Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tools/coverage/coverage-rust
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ else
test -x "$cargo_cmd" || cargo install cargo-llvm-cov --version 0.8.4 --locked --root out
fi

ANKI_TEST_MODE=1 "$cargo_cmd" llvm-cov --workspace --locked --json --summary-only \
ANKI_TEST_MODE=1 "$cargo_cmd" llvm-cov nextest --workspace --locked --json --summary-only \
--output-path $outdir/coverage-summary.json --fail-under-lines 64

if [ "$html" = "--html" ]; then
Expand Down
2 changes: 1 addition & 1 deletion tools/coverage/coverage-rust.bat
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ if "%CI%"=="true" (
)

set "ANKI_TEST_MODE=1"
"%CARGO_CMD%" llvm-cov --workspace --locked --json --summary-only ^
"%CARGO_CMD%" llvm-cov nextest --workspace --locked --json --summary-only ^
--output-path %outdir%\coverage-summary.json --fail-under-lines 64 || exit /b 1

if "%1"=="--html" (
Expand Down
Loading