Skip to content

Commit 56f2841

Browse files
author
Vasu Jaganath
committed
try to fix tmp_dir permission failure with test fixture
1 parent 6efcc8e commit 56f2841

File tree

2 files changed

+13
-15
lines changed

2 files changed

+13
-15
lines changed

cwltool/command_line_tool.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1498,9 +1498,9 @@ def collect_output(
14981498

14991499
def recursively_insert(j_dict: Any, key: Any, val: Any) -> Any:
15001500
"""Recursively insert a value into any dictionary."""
1501-
if isinstance(j_dict, List):
1501+
if isinstance(j_dict, MutableSequence):
15021502
return [recursively_insert(x, key, val) for x in j_dict]
1503-
if isinstance(j_dict, Dict):
1503+
if isinstance(j_dict, MutableMapping):
15041504
if j_dict.get("class") == "File":
15051505
j_dict[key] = val
15061506
else:

tests/test_2D.py

+11-13
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,19 @@
1-
import subprocess
2-
import sys
31
from pathlib import Path
2+
import pytest
3+
from .util import get_data, get_main_output
44

5-
from .util import get_data
6-
7-
8-
def test_output_2D_file_format() -> None:
5+
@pytest.fixture(scope="session")
6+
def test_output_2d_file_format(tmp_path_factory: pytest.TempPathFactory) -> None:
97
"""A simple test for format tag fix for 2D output arrays."""
108

11-
Path("filename.txt").touch()
12-
params = [
13-
sys.executable,
9+
tmp_path: Path = tmp_path_factory.mktemp("tmp")
10+
commands = [
1411
"-m",
1512
"cwltool",
1613
"--cachedir", # just so that the relative path of file works out
17-
"foo",
18-
get_data("tests/output_2D_file_format.cwl"),
19-
]
14+
str(tmp_path),
15+
get_data("tests/output_2D_file_format.cwl")]
16+
17+
error_code, _, stderr = get_main_output(commands)
2018

21-
assert subprocess.check_call(params) == 0
19+
assert error_code == 0, stderr

0 commit comments

Comments
 (0)