Packages

An ExUnit formatter to visualize test execution

Current section

Files

Jump to
Raw

mix.exs

defmodule ExUnitSpan.MixProject do
use Mix.Project
@source_url "https://github.com/ananthakumaran/ex_unit_span"
@version "0.1.0"
def project do
[
app: :ex_unit_span,
version: @version,
elixir: "~> 1.8",
start_permanent: Mix.env() == :prod,
deps: deps(),
docs: docs(),
package: package()
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:jason, "~> 1.0"},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
defp docs do
[
extras: [
"README.md"
],
main: "readme",
source_url: @source_url,
source_ref: "v#{@version}",
formatters: ["html"]
]
end
defp package do
[
description: "An ExUnit formatter to visualize test execution",
licenses: ["MIT"],
maintainers: ["ananthakumaran@gmail.com"],
links: %{
"GitHub" => @source_url
}
]
end
end