Packages
An ExUnit.Formatter that produces an XML report of the tests run in the project _build dir. It is a good fit with Jenkins test reporting plugin, for example.
Current section
Files
Jump to
Current section
Files
junit_formatter
mix.exs
mix.exs
defmodule Formatter.Mixfile do
use Mix.Project
@version "0.0.2"
def project do
[app: :junit_formatter,
version: @version,
elixir: "~> 1.0",
deps: deps,
package: package,
description: "An ExUnit.Formatter that produces an XML report of the tests run in the project _build dir.\n" <>
"It is a good fit with Jenkins test reporting plugin, for example.",
name: "JUnit Formatter",
docs: [readme: "README.md", main: "README",
source_ref: "v#{@version}",
source_url: "https://github.com/victorolinasc/junit_formatter"]]
end
def application do
[applications: [:logger]]
end
defp deps do
[{:earmark, "~> 0.1", only: :docs},
{:ex_doc, "~> 0.7", only: :docs},
{:inch_ex, only: :docs}]
end
defp package do
%{licenses: ["Apache 2"],
contributors: ["Victor Olinasc"],
links: %{"Github" => "https://github.com/victorolinasc/junit-formatter",
"docs" => "http://hexdocs.pm/junit_formatter/"}}
end
end