From 555c353eb8b08fc4db26ad9d4eab7de634a74340 Mon Sep 17 00:00:00 2001 From: Mayel de Borniol Date: Mon, 2 Dec 2024 19:38:18 +0000 Subject: [PATCH] test --- justfile | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/justfile b/justfile index 7bada6dd80..20e8a1a123 100644 --- a/justfile +++ b/justfile @@ -584,13 +584,16 @@ test-remote *args='': # Run stale tests, and wait for changes to any module code, and re-run affected tests test-watch *args='': @echo "Testing {{args}}..." - MIX_ENV=test just mix mneme.watch --stale {{args}} -# MIX_ENV=test just mix test.watch --stale --exclude mneme {{args}} + MIX_ENV=test just mix test.watch --stale --exclude mneme {{args}} + +test-watch-mneme *args='': + @echo "Testing {{args}}..." + MIX_ENV=test just mix mneme.watch --stale --include mneme {{args}} test-watch-full *args='': @echo "Testing {{args}}..." - MIX_ENV=test just mix mneme.watch {{args}} -# MIX_ENV=test just mix test.watch --exclude mneme {{args}} + MIX_ENV=test just mix test.watch --exclude mneme {{args}} +# MIX_ENV=test just mix mneme.watch {{args}} # Run stale tests, and wait for changes to any module code, and re-run affected tests, and interactively choose which tests to run test-interactive *args='':