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 d546841 commit c0d62ffCopy full SHA for c0d62ff
pydra/engine/tests/test_task.py
@@ -1045,8 +1045,10 @@ def test_audit_shellcommandtask(tmpdir):
1045
1046
def test_audit_shellcommandtask_version(tmpdir):
1047
import subprocess as sp
1048
- version_cmd = (sp.run("less --version", shell=True,
1049
- stdout=sp.PIPE).stdout.decode("utf-8"))
+
+ version_cmd = sp.run("less --version", shell=True, stdout=sp.PIPE).stdout.decode(
1050
+ "utf-8"
1051
+ )
1052
version_cmd = version_cmd.splitlines()[0]
1053
cmd = "less"
1054
shelly = ShellCommandTask(
@@ -1057,7 +1059,6 @@ def test_audit_shellcommandtask_version(tmpdir):
1057
1059
messengers=FileMessenger(),
1058
1060
)
1061
-
1062
import glob
1063
1064
shelly.cache_dir = tmpdir
0 commit comments