Skip to content

Commit

Permalink
fix: test failure caused by parallel init of package index
Browse files Browse the repository at this point in the history
  • Loading branch information
ethangreen-dev committed Apr 15, 2024
1 parent bd37641 commit f39a2c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
uses: Swatinem/rust-cache@v2

- name: Build tests
run: cargo test --target ${{ matrix.target }} --no-run
run: cargo test --target ${{ matrix.target }} --no-run -- --test-threads=1

- name: Run tests
run: cargo test --target ${{ matrix.target }} --no-fail-fast
run: cargo test --target ${{ matrix.target }} --no-fail-fast -- --test-threads=1

0 comments on commit f39a2c9

Please sign in to comment.