Skip to content

Commit 75e6fa6

Browse files
authored
Merge pull request #16 from OPPIDA/fix/tests-download
2 parents ffa5260 + 5516a28 commit 75e6fa6

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

tests/test_cli.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@ def test_download() -> None | AssertionError:
3636
"""Test the download of missing resources."""
3737
downloadable = get_downloadable()
3838
logging.info("Downloading all missing resources.")
39-
result = runner.invoke(cli, ["download", "all"], input="y\n" * len(downloadable))
39+
result = runner.invoke(
40+
cli, ["download", "all", "--test"], input="y\n" * len(downloadable)
41+
)
4042
assert result.exit_code == 0
4143

4244
for name, instance in downloadable.items():

0 commit comments

Comments
 (0)