We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ffa5260 + 5516a28 commit 75e6fa6Copy full SHA for 75e6fa6
1 file changed
tests/test_cli.py
@@ -36,7 +36,9 @@ def test_download() -> None | AssertionError:
36
"""Test the download of missing resources."""
37
downloadable = get_downloadable()
38
logging.info("Downloading all missing resources.")
39
- result = runner.invoke(cli, ["download", "all"], input="y\n" * len(downloadable))
+ result = runner.invoke(
40
+ cli, ["download", "all", "--test"], input="y\n" * len(downloadable)
41
+ )
42
assert result.exit_code == 0
43
44
for name, instance in downloadable.items():
0 commit comments