Skip to content

Commit

Permalink
feat: updated CI to run provider tests on one thread and rest multi-t…
Browse files Browse the repository at this point in the history
…hreads
  • Loading branch information
l0r1s committed Sep 26, 2023
1 parent 8963c0d commit 0a26f05
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,12 @@ jobs:
- name: Build
run: cargo build

- name: Tests
- name: Tests (except provider crate)
run: cargo test --workspace --exclude provider

- name: Tests (provider crate)
# there should be a unique test thread for native provider tests (asserting spawned processes count)
run: cargo test -- --test-threads 1
cargo test -p provider -- --test-threads 1

coverage:
name: Zombienet SDK - coverage
Expand Down

0 comments on commit 0a26f05

Please sign in to comment.