Skip to content

Commit 6c6dc81

Browse files
committed
ENH: Testing works
1 parent 2467ff0 commit 6c6dc81

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

nipype/pipeline/plugins/tests/test_oar.py

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
1-
from nipype import config, logging
2-
config.enable_debug_mode()
3-
logging.update_logging(config)
4-
51
import os
6-
from os import path
72
from shutil import rmtree
83
from tempfile import mkdtemp
94

@@ -12,7 +7,6 @@
127
import nipype.pipeline.engine as pe
138

149

15-
1610
class 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)
4034
def 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()

0 commit comments

Comments
 (0)