Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion nipype/pipeline/engine/tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ def test_mapnode_crash3(tmpdir):
wf = pe.Workflow('testmapnodecrash')
wf.add_nodes([node])
wf.base_dir = tmpdir.strpath
# changing crashdump dir to cwl (to avoid problems with read-only systems)
# changing crashdump dir to current working directory (to avoid problems with read-only systems)
wf.config["execution"]["crashdump_dir"] = os.getcwd()
with pytest.raises(RuntimeError):
wf.run(plugin='Linear')