From e4505125d0a441cfb5723968ab90e142e7d19135 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment?= Date: Wed, 16 Oct 2024 19:44:29 +0200 Subject: [PATCH] chore: exclude invariant from classic test. --- Makefile | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index d125703..886fa46 100644 --- a/Makefile +++ b/Makefile @@ -26,14 +26,20 @@ snapshot: @forge snapshot # Tests +test-std: + forge test --summary --fail-fast --show-progress + test: - @forge test --summary --fail-fast --show-progress + @FOUNDRY_NO_MATCH_CONTRACT=Invariant make test-std test-f-%: - @FOUNDRY_MATCH_TEST=$* make test + @FOUNDRY_MATCH_TEST=$* make test-std test-c-%: - @FOUNDRY_MATCH_CONTRACT=$* make test + @FOUNDRY_MATCH_CONTRACT=$* make test-std + +test-all: + @make test-std # Coverage coverage: