diff --git a/Makefile b/Makefile index b0eb283a..74a3b031 100644 --- a/Makefile +++ b/Makefile @@ -15,6 +15,9 @@ test-local: test-debugger-socket: cargo test -p prometeu-host-desktop-winit --lib -- --ignored +clean: + cargo llvm-cov clean --workspace + coverage: cargo llvm-cov --workspace --all-features --html --output-dir target/llvm-cov/html --fail-under-lines 0 --fail-under-functions 0 --fail-under-regions 0 @@ -25,5 +28,5 @@ coverage-json: cargo llvm-cov report --json --summary-only --output-path target/llvm-cov/summary.json test: fmt-check clippy test-local test-debugger-socket -ci: fmt-check clippy coverage +ci: clean fmt-check clippy coverage cobertura: coverage-xml coverage-json