aboutsummaryrefslogtreecommitdiff
blob: 8b5f2d639f62d70257304e1bdb2aed23fb3ac5ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
diff --git a/tests/actions/test_copyoverlay.py b/tests/actions/test_copyoverlay.py
index 3509ba6..371813e 100644
--- a/tests/actions/test_copyoverlay.py
+++ b/tests/actions/test_copyoverlay.py
@@ -19,7 +19,11 @@ import fsleyes.actions.copyoverlay as copyoverlay
 
 from .. import run_with_orthopanel, realYield
 
+import pytest
 
+@pytest.mark.skip(reason="Known to fail on Gentoo:"
+    "https://github.com/pauldmccarthy/fsleyes/issues/38"
+    )
 def test_copyImage_3d():
     run_with_orthopanel(_test_copyImage_3d)
 def _test_copyImage_3d(panel, overlayList, displayCtx):
@@ -103,7 +107,9 @@ def _test_copyImage_3d(panel, overlayList, displayCtx):
     assert np.all(copy[5:25, 5:25, 5:25] == img3d[:, :, :])
     overlayList.remove(copy)
 
-
+@pytest.mark.skip(reason="Known to fail on Gentoo:"
+    "https://github.com/pauldmccarthy/fsleyes/issues/38"
+    )
 def test_copyImage_4d():
     run_with_orthopanel(_test_copyImage_4d)
 def _test_copyImage_4d(panel, overlayList, displayCtx):
@@ -220,6 +226,9 @@ def make_rgb():
     return fslimage.Image(rgb, xform=np.eye(4))
 
 
+@pytest.mark.skip(reason="Known to fail on Gentoo:"
+    "https://github.com/pauldmccarthy/fsleyes/issues/38"
+    )
 def test_copyImage_multiValued():
     run_with_orthopanel(_test_copyImage_multiValued)
 def _test_copyImage_multiValued(panel, overlayList, displayCtx):
@@ -281,6 +290,9 @@ def _test_copyImage_multiValued(panel, overlayList, displayCtx):
     overlayList.remove(copy)
 
 
+@pytest.mark.skip(reason="Known to fail on Gentoo:"
+    "https://github.com/pauldmccarthy/fsleyes/issues/38"
+    )
 def test_CopyOverlayAction():
     run_with_orthopanel(_test_CopyOverlayAction)
 def _test_CopyOverlayAction(panel, overlayList, displayCtx):
diff --git a/tests/actions/test_newimage.py b/tests/actions/test_newimage.py
index cfd6b5a..e9c2ff8 100644
--- a/tests/actions/test_newimage.py
+++ b/tests/actions/test_newimage.py
@@ -82,6 +82,9 @@ def test_newImage():
     assert        img.name          == 'whaa'
 
 
+@pytest.mark.skip(reason="Known to fail on Gentoo:"
+    "https://github.com/pauldmccarthy/fsleyes/issues/38"
+    )
 def test_NewImageAction():
     run_with_orthopanel(_test_NewImageAction)