Skip to content

Commit 3c61005

Browse files
committed
removed hash checking in a function that checks for download fails
Signed-off-by: Enoch Mok <enochmokny@gmail.com>
1 parent 5b0b5f4 commit 3c61005

1 file changed

Lines changed: 0 additions & 5 deletions

File tree

tests/test_utils.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -182,11 +182,6 @@ def skip_if_downloading_fails():
182182
raise unittest.SkipTest(f"Error while downloading: {rt_e}") from rt_e # incomplete download
183183

184184
raise rt_e
185-
except ValueError as v_e:
186-
if "hash check" in str(v_e):
187-
raise unittest.SkipTest(f"Hash value error while downloading: {v_e}") from v_e
188-
189-
raise v_e
190185

191186

192187
def test_pretrained_networks(network, input_param, device):

0 commit comments

Comments
 (0)