We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c282acd commit bb74410Copy full SHA for bb74410
mix.exs
@@ -22,10 +22,6 @@ defmodule Sentry.Mixfile do
22
plt_add_apps: [:mix, :ex_unit]
23
],
24
test_coverage: [tool: ExCoveralls],
25
- preferred_cli_env: [
26
- "coveralls.html": :test,
27
- "test.integrations": :test
28
- ],
29
name: "Sentry",
30
docs: [
31
extra_section: "Guides",
@@ -84,6 +80,10 @@ defmodule Sentry.Mixfile do
84
80
]
85
81
end
86
82
83
+ def cli do
+ [preferred_envs: ["coveralls.html": :test, "test.integrations": :test]]
+ end
+
87
defp extra_applications(:test), do: [:logger, :opentelemetry]
88
defp extra_applications(_other), do: [:logger]
89
0 commit comments