Skip to content

Commit 7d7e643

Browse files
committed
fix(ci): Fixed grcov ignore flag
1 parent a7d71b0 commit 7d7e643

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ jobs:
4444
# Run all tests, including the ignored python bindings
4545
cargo test --all-features -- --ignored
4646
# Generate the coverage report
47-
grcov . --binary-path ./target/debug/ -s . -t lcov --branch --ignore-not-existing --ignore "/*" "tests/*" -o ./coverage.lcov
48-
grcov . --binary-path ./target/debug/ -s . -t cobertura --branch --ignore-not-existing --ignore "/*" "tests/*" -o ./coverage/cobertura.xml
47+
grcov . --binary-path ./target/debug/ -s . -t lcov --branch --ignore-not-existing --ignore "/*" --ignore "tests/*" -o ./coverage.lcov
48+
grcov . --binary-path ./target/debug/ -s . -t cobertura --branch --ignore-not-existing --ignore "/*" --ignore "tests/*" -o ./coverage/cobertura.xml
4949
5050
- name: Upload coverage to Codecov
5151
uses: codecov/codecov-action@v5

0 commit comments

Comments
 (0)