diff options
author | Alex Auvolat <alex@adnab.me> | 2018-08-27 16:19:53 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2018-08-27 16:19:53 +0200 |
commit | 233989490b0b01670b03154f9e8f83be13e5a89a (patch) | |
tree | 9a98641848fc57f85ce2c451911d4030c05153f9 /mix.exs | |
parent | 6cc81b55f2466cd7526f47da6980e3eb47041457 (diff) | |
download | shard-233989490b0b01670b03154f9e8f83be13e5a89a.tar.gz shard-233989490b0b01670b03154f9e8f83be13e5a89a.zip |
Big fixes (1 line), small changes (many lines)
Diffstat (limited to 'mix.exs')
-rw-r--r-- | mix.exs | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -8,7 +8,9 @@ defmodule Shard.MixProject do elixir: "~> 1.6", build_embedded: Mix.env == :prod, start_permanent: Mix.env() == :prod, - deps: deps() + deps: deps(), + test_coverage: [tool: ExCoveralls], + preferred_cli_env: [coveralls: :test, "coveralls.detail": :test, "coveralls.post": :test, "coveralls.html": :test] ] end @@ -27,7 +29,9 @@ defmodule Shard.MixProject do # {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}, # {:cowboy, "~> 1.1.2"}, # {:plug, "~> 1.3.4"}, - {:salty, "~> 0.1.3", hex: :libsalty} + {:excoveralls, "~> 0.10", only: :test}, + + {:salty, "~> 0.1.3", hex: :libsalty}, ] end end |