Radish alpha
r
rad:zwTxygwuz5LDGBq255RA2CbNGrz8
Radicle CI broker
Radicle
Git
build(Makefile): allow restricting what tests to run
Lars Wirzenius committed 8 months ago
commit a3d8d1aa20eb006981994a23c2712d481b428848
parent 57d5f7f
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: