Skip to content

Commit

Permalink
Re-enable coverex, reordering the applications to distinguish between…
Browse files Browse the repository at this point in the history
… test and regular apps
  • Loading branch information
alfert committed Nov 8, 2014
1 parent b32a178 commit 3c51287
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@ defmodule Reaxive.Mixfile do
version: "0.0.2-dev",
elixir: "~> 1.0.0",
docs: [readme: true],

#########
## Something on coveralls fails - why???
## what is different to coverex?
test_coverage: [tool: Coverex.Task, log: :info, coveralls: true],
deps: deps ]
end
Expand All @@ -18,14 +14,17 @@ defmodule Reaxive.Mixfile do
def application do
[
mod: { Reaxive, [] },
applications: [:kernel , :stdlib, :sasl, :logger, :httpoison]
applications: [
# httpoison is used for coverage testing only ...
:httpoison,
# regular dependencies
:kernel , :stdlib, :sasl, :logger]
]
end

defp deps do
[
{:coverex, "~> 1.0.0", only: :test},
# {:coverex, "~> 0.0.7-dev", path: "../coverex", only: :test},
{:earmark, "~> 0.1", only: :dev},
{:ex_doc, "~> 0.6", only: :dev},
{:dialyze, "~> 0.1.2", only: :dev},
Expand Down

0 comments on commit 3c51287

Please sign in to comment.