File tree Expand file tree Collapse file tree 1 file changed +1
-8
lines changed
nipype/pipeline/plugins/tests Expand file tree Collapse file tree 1 file changed +1
-8
lines changed Original file line number Diff line number Diff line change 1- from nipype import config , logging
2- config .enable_debug_mode ()
3- logging .update_logging (config )
4-
51import os
6- from os import path
72from shutil import rmtree
83from tempfile import mkdtemp
94
127import nipype .pipeline .engine as pe
138
149
15-
1610class InputSpec (nib .TraitedSpec ):
1711 input1 = nib .traits .Int (desc = 'a random int' )
1812 input2 = nib .traits .Int (desc = 'a random int' )
@@ -36,7 +30,7 @@ def _list_outputs(self):
3630 return outputs
3731
3832
39- @skipif (False )
33+ @skipif (True )
4034def test_run_oar ():
4135 cur_dir = os .getcwd ()
4236 temp_dir = mkdtemp (prefix = 'test_engine_' , dir = os .getcwd ())
@@ -51,7 +45,6 @@ def test_run_oar():
5145 pipe .base_dir = os .getcwd ()
5246 mod1 .inputs .input1 = 1
5347 execgraph = pipe .run (plugin = "OAR" )
54- print "Run"
5548 names = [
5649 '.' .join ((node ._hierarchy , node .name ))
5750 for node in execgraph .nodes ()
You can’t perform that action at this time.
0 commit comments