Skip to content

Commit

Permalink
Update coverage.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherRabotin authored Nov 21, 2024
1 parent 37b179d commit da15c03
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,14 @@ jobs:
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- name: Generate full code coverage
run: cargo llvm-cov --lcov --output-path lcov.info
run: |
cargo llvm-cov test --lib --no-report --tests
cargo llvm-cov test --no-report mission_design -- --nocapture --ignored
cargo llvm-cov test --no-report orbit_determination -- --nocapture --ignored
cargo llvm-cov test --no-report propulsion -- --nocapture --ignored
cargo llvm-cov test --no-report propagation -- --nocapture --ignored
cargo llvm-cov report --lcov > lcov.txt
# cargo llvm-cov --lcov --output-path lcov.info
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
Expand Down

0 comments on commit da15c03

Please sign in to comment.