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 2667628 commit 58adbd4Copy full SHA for 58adbd4
1 file changed
mix.exs
@@ -134,23 +134,9 @@ defmodule Sentry.Mixfile do
134
]
135
end
136
137
- defp run_integration_tests_if_supported(_args) do
+ defp run_integration_tests_if_supported(args) do
138
if Version.match?(System.version(), ">= 1.16.0") do
139
- Mix.Task.run("test.integrations")
140
- else
141
- IO.puts("Skipping integration tests for Elixir versions < 1.16")
142
- end
143
144
-
145
- @integrations [
146
- "phoenix_app"
147
- ]
148
149
- defp test_integrations(args) do
150
- if Version.match?(System.version(), ">= 1.16.0") do
151
- for integration <- @integrations do
152
- run_integration_tests(integration, args)
153
+ run_integration_tests("phoenix_app", args)
154
else
155
IO.puts("Skipping integration tests for Elixir versions < 1.16")
156
0 commit comments