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