From 3795602e4b381dcdc0d5446f6a59832d0412b8ce Mon Sep 17 00:00:00 2001 From: Palash Tyagi <23239946+Magnus167@users.noreply.github.com> Date: Sun, 4 May 2025 02:22:17 +0100 Subject: [PATCH] Refactor unit test commands to remove unnecessary flags in doctests and coverage runs --- .github/workflows/run-unit-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run-unit-tests.yml b/.github/workflows/run-unit-tests.yml index 7563add..2b8cd8f 100644 --- a/.github/workflows/run-unit-tests.yml +++ b/.github/workflows/run-unit-tests.yml @@ -41,10 +41,10 @@ jobs: uses: taiki-e/install-action@cargo-llvm-cov - name: Run doctests - run: cargo test --doc --all-features --workspace --release + run: cargo test --doc --release - name: Run unit tests with code coverage - run: cargo llvm-cov --all-features --release --workspace --lcov --output-path lcov.info + run: cargo llvm-cov --release --lcov --output-path lcov.info - name: Test docs generation run: cargo doc --no-deps --release