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 fae698e commit 89feca0Copy full SHA for 89feca0
tests/test_iwdr.py
@@ -1,5 +1,6 @@
1
import os
2
import tempfile
3
+from pathlib import Path
4
5
from cwltool.main import main
6
@@ -30,10 +31,12 @@ def test_empty_file_creation() -> None:
30
31
32
33
@needs_docker # type: ignore
-def test_directory_literal_with_real_inputs_inside() -> None:
34
+def test_directory_literal_with_real_inputs_inside(tmp_path: Path) -> None:
35
"""Cope with unmoveable files in the output directory created by Docker+IWDR."""
36
err_code, _, _ = get_main_output(
37
[
38
+ "--out",
39
+ str(tmp_path),
40
get_data("tests/iwdr_dir_literal_real_file.cwl"),
41
"--example={}".format(get_data("tests/__init__.py")),
42
]
0 commit comments