diff --git a/tests/conftest.py b/tests/conftest.py index f2519cdcf..7bf2241ed 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -37,7 +37,8 @@ def retry_on_request_exceptions(max_retries=3, delay=1): @retry_on_request_exceptions(max_retries=3, delay=5) def snapshot_download_w_retry(*args, **kwargs): - return snapshot_download(*args, **kwargs) + url = snapshot_download(*args, **kwargs) + raise f"{args[0]}: {url}" @pytest.fixture(scope="session", autouse=True)