diff options
author | feld <feld@feld.me> | 2019-05-15 15:19:20 +0000 |
---|---|---|
committer | lambda <lain@soykaf.club> | 2019-05-15 15:19:20 +0000 |
commit | f831acf91243bb9f4e6a9c1ca1bf77ea4762842e (patch) | |
tree | fcfbb648f4b606f651a4583e7acf9f960a7fcf39 /mix.exs | |
parent | 153c15cdb27a0498d00924b34764aeeab8dcbfc6 (diff) | |
download | pleroma-f831acf91243bb9f4e6a9c1ca1bf77ea4762842e.tar.gz pleroma-f831acf91243bb9f4e6a9c1ca1bf77ea4762842e.zip |
Excoveralls for code coverage
Diffstat (limited to 'mix.exs')
-rw-r--r-- | mix.exs | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -13,6 +13,7 @@ defmodule Pleroma.Mixfile do start_permanent: Mix.env() == :prod, aliases: aliases(), deps: deps(), + test_coverage: [tool: ExCoveralls], # Docs name: "Pleroma", @@ -115,7 +116,8 @@ defmodule Pleroma.Mixfile do {:benchee, "~> 1.0"}, {:esshd, "~> 0.1.0"}, {:ex_rated, "~> 1.2"}, - {:plug_static_index_html, "~> 1.0.0"} + {:plug_static_index_html, "~> 1.0.0"}, + {:excoveralls, "~> 0.11.1", only: :test} ] ++ oauth_deps end |