Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1fdded1 commit ee680b9Copy full SHA for ee680b9
1 file changed
Makefile
@@ -35,11 +35,13 @@ check:## run cargo-check with various features
35
cargo check --all
36
cargo check --all-features
37
cargo check --no-default-features
38
- cargo check --features tui-unix
39
- cargo check --features tui-crossplatform
+ cargo check --no-default-features --features tui-unix
+ cargo check --no-default-features --features tui-crossplatform
40
+ cargo check --no-default-features --features trash-move
41
42
unit-tests: ## run all unit tests
43
cargo test --all
44
+ cargo test --all --no-default-features --features trash-move
45
46
continuous-unit-tests: ## run all unit tests whenever something changes
47
watchexec -w src $(MAKE) unit-tests
0 commit comments