Skip to content

scudelletti/halt_task

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Halt Task

Simple Mix Task that halts the system when executed. Literally it's just a mix task that calls System.halt().

It's useful to halt the system after some task is complete. For example when running tests on IEx to close the IEx after the test suite runs.

Installation

mix archive.install https://github.com/scudelletti/halt_task/raw/master/archives/halt_task.ez

Example: How to use - It will close IEx after tests run

MIX_ENV=test iex -S mix do test, halt

You can achieve the same behavior using mix run -e "System.halt" something like:

MIX_ENV=test iex -S mix do test, run -e "System.halt"

Building archive

mix archive.build -o archives/halt_task.ez

About

Simple task to halt the system

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages