From da15c03260039709545ecca7348c65bad847a964 Mon Sep 17 00:00:00 2001 From: Chris Date: Thu, 21 Nov 2024 13:23:51 -0700 Subject: [PATCH] Update coverage.yaml --- .github/workflows/coverage.yaml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/coverage.yaml b/.github/workflows/coverage.yaml index 3d868ec1..3be9bbf4 100644 --- a/.github/workflows/coverage.yaml +++ b/.github/workflows/coverage.yaml @@ -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: