From 59047ee6c4aae8c20679c51c1ab83d7af4a1091f Mon Sep 17 00:00:00 2001 From: Wing Lian Date: Thu, 9 Jan 2025 11:26:33 -0500 Subject: [PATCH] dump snapshot location for caching --- tests/conftest.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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)