We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f61aa2 commit 66246e1Copy full SHA for 66246e1
nipype/pipeline/engine/tests/test_engine.py
@@ -646,14 +646,7 @@ def func1(in1):
646
assert n1.num_subnodes() == len(n1.inputs.in1)
647
648
# test running the workflow on default conditions
649
- error_raised = False
650
- try:
651
- w1.run(plugin='MultiProc')
652
- except Exception as e:
653
- from nipype.pipeline.engine.base import logger
654
- logger.info('Exception: %s' % str(e))
655
- error_raised = True
656
- assert not error_raised
+ w1.run(plugin='MultiProc')
657
658
# test output of num_subnodes method when serial is True
659
n1._serial = True
0 commit comments