Skip to content

Commit

Permalink
fix: speed up coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
yi-sun committed Oct 30, 2024
1 parent 89d717e commit c61d07a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@ jobs:
run: cargo install cargo-llvm-cov

- name: Run coverage
run: RUST_MIN_STACK=8388608 AXIOM_FAST_TEST=1 cargo llvm-cov --json --output-path=coverage --jobs $(nproc) --profile=fast --features parallel
run: RUST_MIN_STACK=8388608 AXIOM_FAST_TEST=1 cargo llvm-cov --json --output-path=coverage --jobs $(nproc) --profile=fast --features parallel --ignore-filename-regex 'tests|examples' --no-report

- name: Generate report
run: cargo llvm-cov --json --output-path coverage/

- name: Parse detailed coverage report
id: parse
Expand Down

0 comments on commit c61d07a

Please sign in to comment.