summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 2172c42..7766ad2 100644
--- a/Makefile
+++ b/Makefile
@@ -35,11 +35,13 @@ check:## run cargo-check with various features
cargo check --all
cargo check --all-features
cargo check --no-default-features
- cargo check --features tui-unix
- cargo check --features tui-crossplatform
+ cargo check --no-default-features --features tui-unix
+ cargo check --no-default-features --features tui-crossplatform
+ cargo check --no-default-features --features trash-move
unit-tests: ## run all unit tests
cargo test --all
+ cargo test --all --no-default-features --features trash-move
continuous-unit-tests: ## run all unit tests whenever something changes
watchexec -w src $(MAKE) unit-tests