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 3424174 commit 549c018Copy full SHA for 549c018
pydra/engine/tests/test_shelltask.py
@@ -1702,7 +1702,7 @@ def test_shell_cmd_inputspec_with_iterable():
1702
1703
task = ShellCommandTask(name="test", input_spec=input_spec, executable="test")
1704
1705
- for iterable_type in (list, tuple, set):
+ for iterable_type in (list, tuple):
1706
task.inputs.iterable_1 = iterable_type(range(3))
1707
task.inputs.iterable_2 = iterable_type(["bar", "foo"])
1708
assert task.cmdline == "test --in1 0 1 2 --in2 bar --in2 foo"
0 commit comments