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):
118118
119119
120120# 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" )
121123class TestRuntimeProfiler ():
122124 '''
123125 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):
626626 assert not error_raised
627627
628628
629+ @pytest .mark .skipif (sys .version_info < (3 , 0 ),
630+ reason = "Disabled until https://github.com/nipy/nipype/issues/1692 is resolved" )
629631def test_serial_input (tmpdir ):
630632 wd = str (tmpdir )
631633 os .chdir (wd )
Original file line number Diff line number Diff line change @@ -64,6 +64,8 @@ def test_callback_exception(tmpdir):
6464 assert so .statuses [1 ][1 ] == 'exception'
6565
6666
67+ @pytest .mark .skipif (sys .version_info < (3 , 0 ),
68+ reason = "Disabled until https://github.com/nipy/nipype/issues/1692 is resolved" )
6769def test_callback_multiproc_normal (tmpdir ):
6870 so = Status ()
6971 wf = pe .Workflow (name = 'test' , base_dir = str (tmpdir ))
@@ -81,6 +83,8 @@ def test_callback_multiproc_normal(tmpdir):
8183 assert so .statuses [1 ][1 ] == 'end'
8284
8385
86+ @pytest .mark .skipif (sys .version_info < (3 , 0 ),
87+ reason = "Disabled until https://github.com/nipy/nipype/issues/1692 is resolved" )
8488def test_callback_multiproc_exception (tmpdir ):
8589 so = Status ()
8690 wf = pe .Workflow (name = 'test' , base_dir = str (tmpdir ))
You can’t perform that action at this time.
0 commit comments