I'd like ExUnit to sort its output by source code line number and path. This simplifies fixing multiple test cases in a row, when that's what you're doing, and it shouldn't slow down other development. If it would noticeably slow down parallell testing, only sorting output when `--max-cases 1` or when some other flag is set would also be an option.
Right now, I ran `mix test` and got failing test cases on lines `99, 118, 59, 133` in the same file. The order is not even deterministic right now, as the next run gave `59, 118, 133, 99` with no code changes. -- You received this message because you are subscribed to the Google Groups "elixir-lang-core" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/elixir-lang-core/1ac8f79e-f587-4cdb-8f8b-6c0c3c109877%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
