Skip to content
Snippets Groups Projects
Commit a31c13d8 authored by Stephan Seitz's avatar Stephan Seitz
Browse files

Skip test causing Gitlab CI to crash

parent 0e5060b4
No related branches found
No related tags found
No related merge requests found
Pipeline #18893 passed
...@@ -248,7 +248,8 @@ def test_valid_boundary_handling_torch_native(): ...@@ -248,7 +248,8 @@ def test_valid_boundary_handling_torch_native():
@pytest.mark.parametrize('with_offsets', (False, True)) @pytest.mark.parametrize('with_offsets', (False, True))
@pytest.mark.parametrize('with_cuda', (False, pytest.param(True, marks=pytest.mark.xfail))) @pytest.mark.parametrize('with_cuda',
(False, pytest.param(True, marks=pytest.mark.skipif('CI' in os.environ, reason='SEGFAULT on CI')))) # noqa
def test_tfmad_gradient_check_torch_native(with_offsets, with_cuda): def test_tfmad_gradient_check_torch_native(with_offsets, with_cuda):
torch = pytest.importorskip('torch') torch = pytest.importorskip('torch')
import torch import torch
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment