Last active
May 22, 2024 10:06
-
-
Save josevalim/a5e747c90a72e40a4b52062ea6919877 to your computer and use it in GitHub Desktop.
Revisions
-
josevalim revised this gist
Nov 27, 2016 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ # 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 test --stale --listen-on-stdin -
josevalim revised this gist
Jul 1, 2016 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,2 +1,4 @@ # 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()" -
josevalim revised this gist
Jul 1, 2016 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,2 +1,2 @@ # You will need fswatch installed (available in homebrew and friends) fswatch lib/ test/ | MIX_ENV=test mix do test --stale, run --no-halt -e "IO.gets(:stdio, ''); IO.puts 'Restarting...'; :init.restart()" -
josevalim revised this gist
Jul 1, 2016 . No changes.There are no files selected for viewing
-
josevalim renamed this gist
Jul 1, 2016 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
josevalim revised this gist
Jul 1, 2016 . No changes.There are no files selected for viewing
-
josevalim created this gist
Jul 1, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,2 @@ # You will need fswatch installed (available in homebrew and friends) fswatch lib/ test/ | elixir -e "Task.start fn -> IO.gets(:stdio, ''); IO.puts 'Restarting...'; :init.restart() end" --no-halt -S mix test --stale