Packages
compact table of test indicators accompanied with a failure dump under /tmp/
Current section
Files
Jump to
Current section
Files
exunit_stamp_formatter
mix.exs
mix.exs
defmodule ExunitStampFormatter.MixProject do
use Mix.Project
def project do
[
app: :exunit_stamp_formatter,
version: "0.2.0",
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
package: package(),
deps: deps()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:ex_doc, "~> 0.14", only: :dev, runtime: false},
]
end
defp package do
[
name: "exunit_stamp_formatter",
description: "compact table of test indicators accompanied with a failure dump under /tmp/",
licenses: ["Unlicense"],
links: %{"scm" => "https://sr.ht/~aec/exunit-stamp-formatter"},
]
end
end