Hello!
While working through a project I found that I just wanted a print out of tests that failed and on what line instead of the full description and stack trace. Something like:
test/my_test.exs:5
test/my_test.exs:12
.... etc
I was able to 'grep' something close to this but feel it would be helpful to pass an option to 'mix test' allowing for a concise output.
I've got something close with the Elixir source code, I've changed the CLI formatter behavior when the option is present, but wanted to make sure others would approve before opening a PR.
Please let me know your thoughts!