Skip to content

Instantly share code, notes, and snippets.

@craigp
Forked from josevalim/watcher.sh
Created July 8, 2016 21:01
Show Gist options
  • Save craigp/b5d273389250afb609cd23c59ab695bc to your computer and use it in GitHub Desktop.
Save craigp/b5d273389250afb609cd23c59ab695bc to your computer and use it in GitHub Desktop.
A 1LOC bash script for re-running tests whenever a lib/ or test/ file changes keeping the same VM instance
# You will need fswatch installed (available in homebrew and friends)
# The command below will run tests and wait until fswatch writes something.
# The --stale flag will only run stale entries, it requires Elixir v1.3.
fswatch lib/ test/ | MIX_ENV=test mix do test --stale, run --no-halt -e "IO.gets(:stdio, ''); IO.puts 'Restarting...'; :init.restart()"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment