Skip to content

Commit 128c224

Browse files
committed
minor fixups
1 parent 5295e46 commit 128c224

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

pydra/engine/tests/test_shelltask.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -684,7 +684,7 @@ class Outputs(ShellOutputs):
684684

685685
shelly = Shelly(executable=cmd_exec, opt_t=cmd_t)
686686

687-
with pytest.raises(ValueError, match="'opt_t' requires \['opt_l'\]"):
687+
with pytest.raises(ValueError, match=r"'opt_t' requires \['opt_l'\]"):
688688
shelly()
689689

690690

pydra/engine/tests/test_singularity.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ def test_singularity_2a(plugin, tmp_path):
9393
) as sub:
9494
res = sub(singu)
9595

96+
assert not res.errored, "\n".join(res.errors["error message"])
9697
assert res.outputs.stdout.strip() == " ".join(cmd_args)
9798
assert res.outputs.return_code == 0
9899

0 commit comments

Comments
 (0)