Skip to content

Commit

Permalink
Fixed faulty flag in test_coverage.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
junniest authored Nov 15, 2023
1 parent 2415d7b commit ee024cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
cargo install cargo2junit grcov;
rustup component add llvm-tools-preview;
cargo test --manifest-path ./phylo/Cargo.toml -- -Z unstable-options --format json | cargo2junit > results.xml;
grcov . -s . --binary-path ./phylo/target/debug/deps -t lcov --branch --ignore "**/lib.rs" -ignore "**/io/mod.rs" --ignore "**/*tests.rs" -o lcov.info;
grcov . -s . --binary-path ./phylo/target/debug/deps -t lcov --branch --ignore "**/lib.rs" --ignore "**/io/mod.rs" --ignore "**/*tests.rs" -o lcov.info;
- name: publish test results to github
uses: EnricoMi/publish-unit-test-result-action@v2
if: always()
Expand Down

0 comments on commit ee024cd

Please sign in to comment.