summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2020-02-25 19:31:38 +0800
committerSebastian Thiel <sebastian.thiel@icloud.com>2020-02-25 19:31:38 +0800
commit832e5cd99d2d08b9a504612b6af4aaf007c22f14 (patch)
treede6e45b5c9f7fe43d390c90f553cc3b0ccbe5c2e /Makefile
parent96ff5ab74a70dd908f5dd218077cd2382e08d9f1 (diff)
Prevent continuous unit tests from triggering themselves
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 88e6500..8063dcb 100644
--- a/Makefile
+++ b/Makefile
@@ -35,7 +35,7 @@ unit-tests: ## run all unit tests
cargo test --all
continuous-unit-tests: ## run all unit tests whenever something changes
- watchexec $(MAKE) unit-tests
+ watchexec -w src $(MAKE) unit-tests
journey-tests: target/debug/dua ## run stateless journey tests
./tests/stateless-journey.sh $<