From 20e3560398cb6edefd7ecffb2bdf49bcb4022785 Mon Sep 17 00:00:00 2001 From: Cyrill Leutwiler Date: Thu, 17 Oct 2024 10:22:04 +0200 Subject: [PATCH] Makefile: remove duplicate workspace tests from the test target (#90) Signed-off-by: Cyrill Leutwiler --- Makefile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index d92f49d..bbb91d6 100644 --- a/Makefile +++ b/Makefile @@ -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/