TeamCityExUnitFormatter
Installation
First, add TeamCityExUnitFormatter to your mix.exs dependencies:
def deps do
[{:teamcity_exunit_formatter, "~> 0.3.0"}]
endThen, update your dependencies:
$ mix deps.getUsage
Add this to your test_helper.exs:
if System.get_env("TEAMCITY_VERSION") do
ExUnit.configure formatters: [TeamCityExUnitFormatter]
end
ExUnit.start