Skip to content

Commit 2667628

Browse files
committed
Run integration tests separately
1 parent cf37d01 commit 2667628

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,9 @@ jobs:
9090
- name: Run tests
9191
run: mix test
9292

93+
- name: Run integration tests
94+
run: mix test.integrations
95+
9396
- name: Retrieve PLT Cache
9497
uses: actions/cache@v4
9598
if: matrix.dialyzer

mix.exs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,8 @@ defmodule Sentry.Mixfile do
129129

130130
defp aliases do
131131
[
132-
test: ["sentry.package_source_code", "test", &run_integration_tests_if_supported/1],
133-
"test.integrations": &test_integrations/1
132+
test: ["sentry.package_source_code", "test"],
133+
"test.integrations": &run_integration_tests_if_supported/1
134134
]
135135
end
136136

0 commit comments

Comments
 (0)