Makefile: remove duplicate workspace tests from the test target (#90)

Signed-off-by: Cyrill Leutwiler <bigcyrill@hotmail.com>
This commit is contained in:
Cyrill Leutwiler
2024-10-17 10:22:04 +02:00
committed by GitHub
parent 5bf31db660
commit 20e3560398
+3 -4
View File
@@ -18,8 +18,10 @@ install-revive:
format:
cargo fmt --all --check
clippy:
cargo clippy --all-features --workspace --tests --benches -- --deny warnings --allow dead_code
test: format clippy test-cli test-workspace
cargo test --workspace
test-integration: install-bin
cargo test --package revive-integration
@@ -45,9 +47,6 @@ bench: install-bin
cargo criterion --all --all-features --message-format=json \
| criterion-table > crates/benchmarks/BENCHMARKS.md
clippy:
cargo clippy --all-features --workspace --tests --benches -- --deny warnings --allow dead_code
docs: docs-build
mdbook serve --open docs/