We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
test_utils
1 parent 5ffaacc commit 5aaa70bCopy full SHA for 5aaa70b
1 file changed
.github/workflows/code_coverage.yml
@@ -29,11 +29,11 @@ jobs:
29
- name: Install cargo-llvm-cov
30
run: cargo install cargo-llvm-cov
31
- name: Generate coverage data
32
- run: cargo llvm-cov --all-features --branch --quiet --lcov --output-path lcov.info
+ run: cargo llvm-cov --all-features --branch --quiet --ignore-filename-regex "test_utils" --lcov --output-path lcov.info
33
env:
34
RUSTFLAGS: "--cfg coverage_nightly"
35
- name: Generate HTML coverage report
36
- run: cargo llvm-cov --all-features --branch --quiet --html
+ run: cargo llvm-cov --all-features --branch --quiet --ignore-filename-regex "test_utils" --html
37
38
39
- name: Codecov upload
0 commit comments