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 25d6262 commit 7b50628Copy full SHA for 7b50628
pydra/engine/tests/test_singularity.py
@@ -86,7 +86,7 @@ def test_singularity_2a(plugin, tmp_path):
86
assert singu.cmdline == f"{cmd_exec} {' '.join(cmd_args)}"
87
88
with Submitter(
89
- worker=plugin,
+ worker=plugin, environment=Singularity(image=image), cache_dir=tmp_path
90
) as sub:
91
res = sub(singu)
92
@@ -129,7 +129,7 @@ def test_singularity_st_2(tmp_path, n):
129
Singu = shell.define("echo")
130
singu = Singu().split("args", args=args_n)
131
132
- plugin="slurm",
+ plugin="slurm", environment=Singularity(image=image), cache_dir=tmp_path
133
134
135
0 commit comments