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 049dcd7 commit 21ecba9Copy full SHA for 21ecba9
tests/test_provenance.py
@@ -34,7 +34,7 @@
34
def cwltool(tmp_path: Path, *args: Any) -> Path:
35
prov_folder = tmp_path / "provenance"
36
prov_folder.mkdir()
37
- new_args = ["--provenance", str(prov_folder)]
+ new_args = ["--no-data", "--provenance", str(prov_folder)]
38
new_args.extend(args)
39
# Run within a temporary directory to not pollute git checkout
40
tmp_dir = tmp_path / "cwltool-run"
@@ -240,6 +240,7 @@ def check_provenance(
240
secondary_files: bool = False,
241
) -> None:
242
check_folders(base_path)
243
+ # TODO can we run check_bagit if there is no data in data?
244
check_bagit(base_path)
245
check_ro(base_path, nested=nested)
246
check_prov(
0 commit comments