Radish alpha
r
Radicle CI broker
Radicle
Git (anonymous pull)
Log in to clone via SSH
build(Makefile): allow restricting what tests to run
Lars Wirzenius committed 9 months ago
commit a3d8d1aa20eb006981994a23c2712d481b428848
parent 57d5f7f11de149bfb31ccab287e5a999a15ceb8d
1 file changed +4 -2
modified Makefile
@@ -1,3 +1,5 @@
+
TESTS = 
+

all: check build test doc

check:
@@ -8,10 +10,10 @@ build:
	cargo build --all-targets

fast-test: build
-
	cargo test -- --skip upgrades
+
	cargo test -- --skip upgrades $(TESTS)

test: fast-test
-
	cargo test
+
	cargo test  -- $(TESTS)

.PHONY: doc
doc: