Skip to content

Commit

Permalink
add test coverage dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
ripple0328 committed Jul 8, 2023
1 parent 257fc37 commit d2d9359
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion mix.exs
Expand Up @@ -9,6 +9,7 @@ defmodule Outdoor.MixProject do
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
aliases: aliases(),
test_coverage: [tool: ExCoveralls],
deps: deps()
]
end
Expand Down Expand Up @@ -50,7 +51,8 @@ defmodule Outdoor.MixProject do
{:telemetry_poller, "~> 1.0"},
{:gettext, "~> 0.20"},
{:jason, "~> 1.2"},
{:plug_cowboy, "~> 2.5"}
{:plug_cowboy, "~> 2.5"},
{:excoveralls, "~> 0.16.1", only: :test}
]
end

Expand Down

0 comments on commit d2d9359

Please sign in to comment.