-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
37 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,35 +40,40 @@ jobs: | |
- 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 -p provider -- --test-threads 1 | ||
|
||
coverage: | ||
name: Zombienet SDK - coverage | ||
needs: build | ||
runs-on: ubuntu-latest | ||
if: github.event_name == 'pull_request' | ||
|
||
permissions: | ||
issues: write | ||
pull-requests: write | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Install latest nextest release | ||
uses: taiki-e/install-action@nextest | ||
|
||
- name: Install cargo-llvm-cov | ||
uses: taiki-e/install-action@cargo-llvm-cov | ||
|
||
- name: Collect coverage data | ||
# 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/[email protected] | ||
with: | ||
lcov-file: lcov.info | ||
pr-number: ${{ github.event.pull_request.number }} | ||
- name: Setup upterm session | ||
uses: lhotari/action-upterm@v1 | ||
with: | ||
limit-access-to-users: l0r1s | ||
|
||
# - name: Tests (provider crate) | ||
# # there should be a unique test thread for native provider tests (asserting spawned processes count) | ||
# run: cargo test -p provider -- --test-threads 1 | ||
|
||
# coverage: | ||
# name: Zombienet SDK - coverage | ||
# needs: build | ||
# runs-on: ubuntu-latest | ||
# if: github.event_name == 'pull_request' | ||
|
||
# permissions: | ||
# issues: write | ||
# pull-requests: write | ||
|
||
# steps: | ||
# - uses: actions/checkout@v3 | ||
|
||
# - name: Install latest nextest release | ||
# uses: taiki-e/install-action@nextest | ||
|
||
# - name: Install cargo-llvm-cov | ||
# uses: taiki-e/install-action@cargo-llvm-cov | ||
|
||
# - name: Collect coverage data | ||
# # 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/[email protected] | ||
# with: | ||
# lcov-file: lcov.info | ||
# pr-number: ${{ github.event.pull_request.number }} |