1
0
mirror of synced 2024-09-21 08:01:46 +02:00
TheChymera-overlay/sci-visualization/fsleyes/files/fsleyes-0.32.0-tests_timeout.patch
Horea Christian 6acbced85d
sci-visualization/fsleyes: new package
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Horea Christian <chr@chymera.eu>
2020-01-24 19:23:12 +01:00

62 lines
1.8 KiB
Diff

diff --git a/tests/actions/test_newimage.py b/tests/actions/test_newimage.py
index a7d159e4..7bc76fb0 100644
--- a/tests/actions/test_newimage.py
+++ b/tests/actions/test_newimage.py
@@ -16,6 +16,7 @@ import fsl.transform.affine as fslaffine
import fsleyes.actions.newimage as newimage
from .. import run_with_fsleyes, run_with_orthopanel, realYield
+import pytest
class MockNewImageDialog(object):
initOverride = False
@@ -121,7 +122,9 @@ def _test_NewImageAction(panel, overlayList, displayCtx):
overlayList.clear()
realYield()
-
+@pytest.mark.skip(reason="Known to fail on Gentoo:"
+ "https://github.com/pauldmccarthy/fsleyes/issues/38"
+ )
def test_NewImageAction_existing():
run_with_orthopanel(_test_NewImageAction_existing)
@@ -156,7 +156,9 @@ def _test_NewImageAction_existing(panel, overlayList, displayCtx):
assert old.sameSpace(new)
assert new.dtype == np.int32
-
+@pytest.mark.skip(reason="Known to fail on Gentoo:"
+ "https://github.com/pauldmccarthy/fsleyes/issues/38"
+ )
def test_NewImageDialog():
run_with_fsleyes(_test_NewImageDialog)
diff --git a/tests/actions/test_resample.py b/tests/actions/test_resample.py
index e883002c..ae1741cc 100644
--- a/tests/actions/test_resample.py
+++ b/tests/actions/test_resample.py
@@ -25,7 +25,11 @@ from .. import (run_with_fsleyes,
simtext,
simclick)
+import pytest
+@pytest.mark.skip(reason="Known to fail on Gentoo:"
+ "https://github.com/pauldmccarthy/fsleyes/issues/38"
+ )
def test_resample():
run_with_orthopanel(_test_resample)
@@ -132,6 +136,9 @@ def _test_resample(panel, overlayList, displayCtx):
+@pytest.mark.skip(reason="Known to fail on Gentoo:"
+ "https://github.com/pauldmccarthy/fsleyes/issues/38"
+ )
def test_ResampleDialog():
run_with_fsleyes(_test_ResampleDialog)