We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 834a8b4 commit 51a49b0Copy full SHA for 51a49b0
1 file changed
tests/test_utils.py
@@ -79,7 +79,7 @@
79
"unexpected EOF", # incomplete download
80
"network issue",
81
"gdown dependency", # gdown not installed
82
- "hash check", # check hash value of downloaded file
+ "hash check", # check hash value of downloaded file
83
"limit", # HTTP Error 503: Egress is over the account limit
84
"authenticate",
85
"timed out", # urlopen error [Errno 110] Connection timed out
@@ -180,7 +180,7 @@ def skip_if_downloading_fails():
180
err_str = str(rt_e)
181
if any(k in err_str for k in DOWNLOAD_FAIL_MSGS):
182
raise unittest.SkipTest(f"Error while downloading: {rt_e}") from rt_e # incomplete download
183
-
+
184
raise rt_e
185
except ValueError as v_e:
186
if "hash check" in str(v_e):
0 commit comments