summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2021-07-14 08:12:45 +0800
committerSebastian Thiel <sebastian.thiel@icloud.com>2021-07-14 08:13:00 +0800
commitee680b9b82618a1d5ecab1fb2e431fe3ff64d130 (patch)
treee3ebeb068e7fe9948be32905b805ba1e53aa13a1
parent1fdded129fe766729ac332fa881c0681c9495316 (diff)
Add checking and testing of new feature toggle
-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