File tree Expand file tree Collapse file tree 1 file changed +13
-8
lines changed
Expand file tree Collapse file tree 1 file changed +13
-8
lines changed Original file line number Diff line number Diff line change @@ -17,14 +17,6 @@ defmodule Benchee.Mixfile do
1717 docs: docs ( ) ,
1818 package: package ( ) ,
1919 test_coverage: [ tool: ExCoveralls ] ,
20- preferred_cli_env: [
21- coveralls: :test ,
22- "coveralls.detail": :test ,
23- "coveralls.post": :test ,
24- "coveralls.html": :test ,
25- "coveralls.travis": :test ,
26- "safe_coveralls.travis": :test
27- ] ,
2820 dialyzer: [
2921 flags: [ :underspecs ] ,
3022 plt_file: { :no_warn , "tools/plts/benchee.plt" } ,
@@ -38,6 +30,19 @@ defmodule Benchee.Mixfile do
3830 ]
3931 end
4032
33+ def cli do
34+ [
35+ preferred_envs: [
36+ coveralls: :test ,
37+ "coveralls.detail": :test ,
38+ "coveralls.post": :test ,
39+ "coveralls.html": :test ,
40+ "coveralls.travis": :test ,
41+ "safe_coveralls.travis": :test
42+ ]
43+ ]
44+ end
45+
4146 defp elixirc_paths ( :test ) , do: [ "lib" , "test/support" , "mix" ]
4247 defp elixirc_paths ( _ ) , do: [ "lib" ]
4348
You can’t perform that action at this time.
0 commit comments