File tree 2 files changed +5
-3
lines changed
nipype/pipeline/plugins/tests
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -29,8 +29,9 @@ def _list_outputs(self):
29
29
return outputs
30
30
31
31
32
- @pytest .mark .skipif (which ('oarsub' ) is None , reason = "OAR not installed" )
33
- def test_run_pbsgraph (tmp_path ):
32
+ @pytest .mark .skipif (which ("oarsub" ) is None , reason = "OAR not installed" )
33
+ @pytest .mark .timeout (60 )
34
+ def test_run_oargraph (tmp_path ):
34
35
pipe = pe .Workflow (name = "pipe" , base_dir = str (tmp_path ))
35
36
mod1 = pe .Node (interface = OarTestInterface (), name = "mod1" )
36
37
mod2 = pe .MapNode (interface = OarTestInterface (), iterfield = ["input1" ], name = "mod2" )
Original file line number Diff line number Diff line change @@ -29,7 +29,8 @@ def _list_outputs(self):
29
29
return outputs
30
30
31
31
32
- @pytest .mark .skipif (which ('qsub' ) is None , reason = "PBS not installed" )
32
+ @pytest .mark .skipif (which ("qsub" ) is None , reason = "PBS not installed" )
33
+ @pytest .mark .timeout (60 )
33
34
def test_run_pbsgraph (tmp_path ):
34
35
pipe = pe .Workflow (name = "pipe" , base_dir = str (tmp_path ))
35
36
mod1 = pe .Node (interface = PbsTestInterface (), name = "mod1" )
You can’t perform that action at this time.
0 commit comments