Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
mayel committed Dec 2, 2024
1 parent 4259fdf commit 555c353
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -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='':
Expand Down

0 comments on commit 555c353

Please sign in to comment.