From d7385f789bdfe720a906183cdbc567c2f2745a4a Mon Sep 17 00:00:00 2001 From: Palash Tyagi <23239946+Magnus167@users.noreply.github.com> Date: Sun, 4 May 2025 01:31:32 +0100 Subject: [PATCH] Fix doctest command to include library tests in run-unit-tests workflow --- .github/workflows/run-unit-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-unit-tests.yml b/.github/workflows/run-unit-tests.yml index 7563add..1e5df07 100644 --- a/.github/workflows/run-unit-tests.yml +++ b/.github/workflows/run-unit-tests.yml @@ -41,7 +41,7 @@ jobs: uses: taiki-e/install-action@cargo-llvm-cov - name: Run doctests - run: cargo test --doc --all-features --workspace --release + run: cargo test --lib --doc --all-features --workspace --release - name: Run unit tests with code coverage run: cargo llvm-cov --all-features --release --workspace --lcov --output-path lcov.info