Skip to content
This repository has been archived by the owner on Mar 1, 2024. It is now read-only.

Commit

Permalink
set test-threads=1 in CI to prevent intermittent test failures
Browse files Browse the repository at this point in the history
  • Loading branch information
ParthDesai committed Feb 8, 2024
1 parent b45c73e commit fd90010
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -178,11 +178,11 @@ jobs:
run: cargo cache

- name: Build and run tests (linux & windows)
run: cargo test --locked
run: cargo test --locked -- --test-threads 1
if: runner.os != 'macOS'

- name: Build and run tests (macOS)
run: cargo test --locked --no-default-features
run: cargo test --locked --no-default-features -- --test-threads 1
if: runner.os == 'macOS'

- name: Clean unused artifacts
Expand Down

0 comments on commit fd90010

Please sign in to comment.