Skip to content

Commit 5516a28

Browse files
committed
fix(tests): add missing --test flag when downloading
1 parent 9167760 commit 5516a28

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)