File tree Expand file tree Collapse file tree 3 files changed +8
-0
lines changed Expand file tree Collapse file tree 3 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -118,6 +118,8 @@ def _use_gb_ram(num_gb):
118
118
119
119
120
120
# Test case for the run function
121
+ @pytest .mark .skipif (sys .version_info < (3 , 0 ),
122
+ reason = "Disabled until https://github.com/nipy/nipype/issues/1692 is resolved" )
121
123
class TestRuntimeProfiler ():
122
124
'''
123
125
This class is a test case for the runtime profiler
Original file line number Diff line number Diff line change @@ -626,6 +626,8 @@ def func1(in1):
626
626
assert not error_raised
627
627
628
628
629
+ @pytest .mark .skipif (sys .version_info < (3 , 0 ),
630
+ reason = "Disabled until https://github.com/nipy/nipype/issues/1692 is resolved" )
629
631
def test_serial_input (tmpdir ):
630
632
wd = str (tmpdir )
631
633
os .chdir (wd )
Original file line number Diff line number Diff line change @@ -64,6 +64,8 @@ def test_callback_exception(tmpdir):
64
64
assert so .statuses [1 ][1 ] == 'exception'
65
65
66
66
67
+ @pytest .mark .skipif (sys .version_info < (3 , 0 ),
68
+ reason = "Disabled until https://github.com/nipy/nipype/issues/1692 is resolved" )
67
69
def test_callback_multiproc_normal (tmpdir ):
68
70
so = Status ()
69
71
wf = pe .Workflow (name = 'test' , base_dir = str (tmpdir ))
@@ -81,6 +83,8 @@ def test_callback_multiproc_normal(tmpdir):
81
83
assert so .statuses [1 ][1 ] == 'end'
82
84
83
85
86
+ @pytest .mark .skipif (sys .version_info < (3 , 0 ),
87
+ reason = "Disabled until https://github.com/nipy/nipype/issues/1692 is resolved" )
84
88
def test_callback_multiproc_exception (tmpdir ):
85
89
so = Status ()
86
90
wf = pe .Workflow (name = 'test' , base_dir = str (tmpdir ))
You can’t perform that action at this time.
0 commit comments