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 9c05bb7 commit 260d1c3Copy full SHA for 260d1c3
tests/test_load_contents.py
@@ -1,4 +1,5 @@
1
"""Test the loadContents feature."""
2
+import os.path
3
4
import json
5
from pathlib import Path
@@ -14,7 +15,7 @@ def test_load_contents_file_array(tmp_path: Path) -> None:
14
15
"--outdir",
16
str(tmp_path),
17
get_data("tests/load_contents-array.cwl"),
- "tests/load_contents-array.yml",
18
+ str(Path(__file__) / "../load_contents-array.yml"),
19
]
20
assert main(params) == 0
21
with open(tmp_path / "data.json") as out_fd:
0 commit comments