From 5e5111d80f2abc71e1d5652ef8262795bcd7d31d Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Tue, 15 Dec 2020 10:48:42 +0100 Subject: [PATCH] add Makefile I can never remember how to run ignored tests, so now I don't have to --- Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ad22f39 --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +# requires cargo-watch +watch: + cargo watch -x clippy + +check: + cargo test + +# run these in release mode because the reason they're ignored is usually that +# they take a long time to run +check-all: check + cargo test --release -- --ignored + +.PHONY: watch check check-all