use nextest for running tests

This commit is contained in:
2024-05-03 22:29:28 +02:00
parent 2736d1d7ad
commit 48cbb51b77
2 changed files with 5 additions and 21 deletions

View File

@@ -3,7 +3,7 @@ rm -rf target/coverage || true
mkdir -p target/coverage
echo "Running tests"
RUST_LOG=mpvipc=trace RUSTFLAGS="-Cinstrument-coverage" LLVM_PROFILE_FILE="target/coverage/%p-%m.profraw" cargo test --all-features --release --no-fail-fast
RUST_LOG=mpvipc=trace RUSTFLAGS="-Cinstrument-coverage" LLVM_PROFILE_FILE="target/coverage/%p-%m.profraw" cargo nextest run --all-features --release --no-fail-fast
echo "Generating coverage report"
grcov \