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

ci: set test threads to 1 for native provider tests

parent 737d6b6c
No related merge requests found
......@@ -38,7 +38,8 @@ jobs:
run: cargo build
- name: Tests
run: cargo test
# there should be a unique test thread for native provider tests (asserting spawned processes count)
run: cargo test -- --test-threads 1
coverage:
name: Zombienet SDK - coverage
......@@ -60,7 +61,8 @@ jobs:
uses: taiki-e/install-action@cargo-llvm-cov
- name: Collect coverage data
run: cargo llvm-cov nextest --lcov --output-path lcov.info
# there should be a unique test thread for native provider tests (asserting spawned processes count)
run: cargo llvm-cov nextest -j 1 --lcov --output-path lcov.info
- name: Report code coverage
uses: Nef10/lcov-reporter-action@v0.4.0
......
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