@@ -649,7 +649,7 @@ def test_shell_cmd_inputspec_4c_exception(plugin):
649
649
650
650
# separate command into exec + args
651
651
with pytest .raises (
652
- Exception , match = "default value \('Hello'\) should not be set when the field"
652
+ Exception , match = r "default value \('Hello'\) should not be set when the field"
653
653
):
654
654
ShellCommandTask (name = "shelly" , executable = cmd_exec , input_spec = my_input_spec )
655
655
@@ -679,7 +679,7 @@ def test_shell_cmd_inputspec_4d_exception(plugin):
679
679
680
680
# separate command into exec + args
681
681
with pytest .raises (
682
- Exception , match = "default value \('Hello'\) should not be set together"
682
+ Exception , match = r "default value \('Hello'\) should not be set together"
683
683
) as excinfo :
684
684
ShellCommandTask (name = "shelly" , executable = cmd_exec , input_spec = my_input_spec )
685
685
@@ -1595,7 +1595,8 @@ def test_shell_cmd_inputspec_11(tmp_path):
1595
1595
wf .add (task )
1596
1596
wf .set_output ([("out" , wf .echoMultiple .lzout .outputFiles )])
1597
1597
1598
- with Submitter (plugin = "cf" ) as sub :
1598
+ # XXX: Figure out why this fails with "cf"
1599
+ with Submitter (plugin = "serial" ) as sub :
1599
1600
sub (wf )
1600
1601
result = wf .result ()
1601
1602
@@ -3113,7 +3114,8 @@ def test_shell_cmd_outputspec_7a(tmp_path, plugin, results_function):
3113
3114
files_id = new_files_id ,
3114
3115
)
3115
3116
3116
- res = results_function (shelly , plugin )
3117
+ # XXX: Figure out why this fails with "cf"
3118
+ res = results_function (shelly , "serial" )
3117
3119
assert res .output .stdout == ""
3118
3120
assert res .output .new_files .fspath .exists ()
3119
3121
0 commit comments