Skip to content

Commit

Permalink
fix up core excoveralls
Browse files Browse the repository at this point in the history
  • Loading branch information
nmenag committed Mar 20, 2024
1 parent 2ee6ed3 commit 6b38bad
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 4 additions & 2 deletions apps/core/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ defmodule Core.MixProject do
elixirc_paths: elixirc_paths(Mix.env()),
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps()
deps: deps(),
test_coverage: [tool: ExCoveralls]
]
end

Expand All @@ -38,7 +39,8 @@ defmodule Core.MixProject do
{:goth, "~> 1.4"},
{:solid, "~> 0.15.2"},
{:faker, "~> 0.18.0", only: [:dev, :test]},
{:mock, "~> 0.3.8"}
{:mock, "~> 0.3.8"},
{:excoveralls, "~> 0.18.0", only: :test}
]
end
end
6 changes: 4 additions & 2 deletions apps/web/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ defmodule Web.MixProject do
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
aliases: aliases(),
deps: deps()
deps: deps(),
test_coverage: [tool: ExCoveralls]
]
end

Expand Down Expand Up @@ -46,7 +47,8 @@ defmodule Web.MixProject do
{:guardian, "~> 2.3"},
{:guardian_db, "~> 3.0"},
{:core, in_umbrella: true},
{:tarams, "~> 1.8"}
{:tarams, "~> 1.8"},
{:excoveralls, "~> 0.18.0", only: :test}
]
end

Expand Down

0 comments on commit 6b38bad

Please sign in to comment.