Skip to content
Snippets Groups Projects
Verified Commit 0a26f057 authored by Loris Moulin's avatar Loris Moulin
Browse files

feat: updated CI to run provider tests on one thread and rest multi-threads

parent 8963c0df
Branches
No related merge requests found
......@@ -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
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment