Skip to content

Commit 17bfdc6

Browse files
committed
Skip failing test in github actions
1 parent a3349b4 commit 17bfdc6

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/test_seismic/xcorqc/test_interval_stack_xcorr.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,9 @@ def inv1(request):
8888
def inv2(request):
8989
return request.param
9090

91+
IN_GITHUB_ACTIONS = os.getenv("GITHUB_ACTIONS") == "true"
92+
93+
@pytest.mark.skipif(IN_GITHUB_ACTIONS, reason="Test doesn't work in Github Actions.")
9194
def test_interval_stack_xcorr(loccha, inv1, inv2, interval_seconds, window_seconds,
9295
window_overlap, whitening, ensemble_stack):
9396
"""

0 commit comments

Comments
 (0)