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
-
5
1
import os
6
- from os import path
7
2
from shutil import rmtree
8
3
from tempfile import mkdtemp
9
4
12
7
import nipype .pipeline .engine as pe
13
8
14
9
15
-
16
10
class InputSpec (nib .TraitedSpec ):
17
11
input1 = nib .traits .Int (desc = 'a random int' )
18
12
input2 = nib .traits .Int (desc = 'a random int' )
@@ -36,7 +30,7 @@ def _list_outputs(self):
36
30
return outputs
37
31
38
32
39
- @skipif (False )
33
+ @skipif (True )
40
34
def test_run_oar ():
41
35
cur_dir = os .getcwd ()
42
36
temp_dir = mkdtemp (prefix = 'test_engine_' , dir = os .getcwd ())
@@ -51,7 +45,6 @@ def test_run_oar():
51
45
pipe .base_dir = os .getcwd ()
52
46
mod1 .inputs .input1 = 1
53
47
execgraph = pipe .run (plugin = "OAR" )
54
- print "Run"
55
48
names = [
56
49
'.' .join ((node ._hierarchy , node .name ))
57
50
for node in execgraph .nodes ()
You can’t perform that action at this time.
0 commit comments