You can achieve the first thing by defining an alias in mix.exs (like below), but I agree a config in ExUnit for this could make it more convenient.
aliases: ["test": "test --no-start"]
The second issue was already discussed, and I assume a PR would still be accepted: https://github.com/elixir-lang/elixir/issues/4586
On Tuesday, October 25, 2016 at 4:06:33 PM UTC+3, Michał Muskała wrote:You can achieve the first thing by defining an alias in mix.exs (like below), but I agree a config in ExUnit for this could make it more convenient.
aliases: ["test": "test --no-start"]
Ahh, cool. But still looks like a hack :) And I want this to work with test.watch :) I do not care that much about 'mix test' task by itself :)