Refactor unit test commands to remove unnecessary flags in doctests and coverage runs

This commit is contained in:
Palash Tyagi 2025-05-04 02:22:17 +01:00
parent dcc3d6eb6c
commit 3795602e4b

View File

@ -41,10 +41,10 @@ jobs:
uses: taiki-e/install-action@cargo-llvm-cov uses: taiki-e/install-action@cargo-llvm-cov
- name: Run doctests - name: Run doctests
run: cargo test --doc --all-features --workspace --release run: cargo test --doc --release
- name: Run unit tests with code coverage - 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 - name: Test docs generation
run: cargo doc --no-deps --release run: cargo doc --no-deps --release