Radish alpha
r
Radicle CI broker
Radicle
Git (anonymous pull)
Log in to clone via SSH
build(Makefile): allow running only slow tests
Lars Wirzenius committed 11 months ago
commit e8285d75821d3f66f70fc10138eaa8eb98769e1f
parent e61f38c72663d38fa17e62eca984455cc4cb992b
1 file changed +4 -1
modified Makefile
@@ -7,7 +7,10 @@ check:
build:
	cargo build --all-targets

-
test: build
+
fast-test: build
+
	cargo test -- --skip upgrades
+

+
test: fast-test
	cargo test

.PHONY: doc