Compare commits

...

5 Commits

Author SHA1 Message Date
e55fadfc6a Why not 100??? 2025-02-21 22:36:24 -05:00
8eab3cd7da Add cargo retries 2025-02-21 21:58:34 -05:00
58000bf07a Change to 25 cause wth 2025-02-21 18:41:31 -05:00
04f0dddb6c Merge branch 'main' into pierremtb/adhoc/max-retrys-10 2025-02-21 18:24:42 -05:00
38345a8eda Set e2e max_retrys=10 2025-02-21 17:52:26 -05:00
2 changed files with 2 additions and 2 deletions

View File

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

View File

@ -46,7 +46,7 @@ jobs:
shell: bash shell: bash
run: |- run: |-
cd "${{ matrix.dir }}" cd "${{ matrix.dir }}"
cargo llvm-cov nextest --workspace --lcov --output-path lcov.info --test-threads=1 --no-fail-fast -P ci 2>&1 | tee /tmp/github-actions.log cargo llvm-cov nextest --workspace --lcov --output-path lcov.info --retries 2 --test-threads=1 --no-fail-fast -P ci 2>&1 | tee /tmp/github-actions.log
env: env:
KITTYCAD_API_TOKEN: ${{secrets.KITTYCAD_API_TOKEN}} KITTYCAD_API_TOKEN: ${{secrets.KITTYCAD_API_TOKEN}}
RUST_MIN_STACK: 10485760000 RUST_MIN_STACK: 10485760000