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 33befb1 commit ce22e36Copy full SHA for ce22e36
nipype/pipeline/plugins/tests/test_sgelike.py
@@ -27,7 +27,7 @@ def is_pending(self, taskid):
27
@patch.object(SGELikeBatchManagerBase, '_submit_batchtask', new=submit_batchtask)
28
@patch.object(SGELikeBatchManagerBase, '_is_pending', new=is_pending)
29
def test_crashfile_creation(tmp_path):
30
- pipe = pe.Workflow(name="pipe", base_dir=tmpdirname)
+ pipe = pe.Workflow(name="pipe", base_dir=str(tmp_path))
31
pipe.config["execution"]["crashdump_dir"] = tmpdirname
32
pipe.add_nodes([pe.Node(interface=Function(function=crasher),
33
name="crasher")])
0 commit comments