From 61f8c51d8552b8426a9a3e5916b95490ea77e5c4 Mon Sep 17 00:00:00 2001 From: Icaro Motta Date: Wed, 28 Feb 2024 09:51:53 -0300 Subject: [PATCH] Fix: only run unit tests in test-unit target (#18947) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index faa86c44a7..6ae2ca02b9 100644 --- a/Makefile +++ b/Makefile @@ -359,7 +359,7 @@ test-watch-for-repl: ##@test Watch all Clojure tests and support REPL connection "until [ -f $$SHADOW_OUTPUT_TO ] ; do sleep 1 ; done ; node --require ./test-resources/override.js $$SHADOW_OUTPUT_TO --repl" test-unit: export SHADOW_OUTPUT_TO := target/unit_test/test.js -test-unit: export SHADOW_NS_REGEXP := ^(?!tests\.integration-test)(?!tests-im\.contract-test).*-test$$ +test-unit: export SHADOW_NS_REGEXP := ^(?!tests\.integration-test)(?!tests\.contract-test).*-test$$ test-unit: ##@test Run unit tests test-unit: _test-clojure