External retry of the playwright step instead of --last-failed (#5465)

* External retry

* Trigger CI

* More external attemps, less internal retries

* Trigger CI

* Trigger CI

* Clean up for PR

* Add --retries=2 to cargo test
This commit is contained in:
Pierre Jacquier
2025-02-22 12:59:19 -05:00
committed by GitHub
parent 9db69007e5
commit 388371b05d
3 changed files with 7 additions and 5 deletions

View File

@ -21,7 +21,7 @@ if [[ ! -f "test-results/.last-run.json" ]]; then
fi
retry=1
max_retrys=5
max_retrys=1
# retry failed tests, doing our own retries because using inbuilt playwright retries causes connection issues
while [[ $retry -le $max_retrys ]]; do