summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 8063dcb..eda6156 100644
--- a/Makefile
+++ b/Makefile
@@ -29,7 +29,14 @@ profile: target/release/dua ## run callgrind and annotate its output - linux onl
benchmark: target/release/dua ## see how fast things are, powered by hyperfine
hyperfine '$<'
-tests: unit-tests journey-tests ## run all tests
+tests: check unit-tests journey-tests ## run all tests
+
+check:## run all unit tests
+ cargo check --all
+ cargo check --all-features
+ cargo check --no-default-features
+ cargo check --features tui-unix
+ cargo check --features tui-crossplatform
unit-tests: ## run all unit tests
cargo test --all