We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6dab61 commit 2e9ecc1Copy full SHA for 2e9ecc1
nipype/pipeline/engine/tests/test_join.py
@@ -154,6 +154,7 @@ def test_join_expansion(tmpdir, needed_outputs):
154
_sum_operands = []
155
_sums = []
156
157
+ prev_state = config.get('execution', 'remove_unnecessary_outputs')
158
config.set('execution', 'remove_unnecessary_outputs', needed_outputs)
159
# Make the workflow.
160
wf = pe.Workflow(name='test')
@@ -203,7 +204,7 @@ def test_join_expansion(tmpdir, needed_outputs):
203
204
# there are two iterations of the post-join node in the iterable path
205
assert len(_products) == 2,\
206
"The number of iterated post-join outputs is incorrect"
-
207
+ config.set('execution', 'remove_unnecessary_outputs', prev_state)
208
209
210
def test_node_joinsource(tmpdir):
0 commit comments