Skip to content

Commit

Permalink
Add checking and testing of new feature toggle
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Jul 14, 2021
1 parent 1fdded1 commit ee680b9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ee680b9

Please sign in to comment.