diff options
author | bashonly <88596187+bashonly@users.noreply.github.com> | 2024-06-27 19:23:44 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-28 00:23:44 +0000 |
commit | 54a63e80af82791d2f0985bd0176bb182963fd5f (patch) | |
tree | 0e263b428b91b6562564ca98382ee1e229b64f1c /test/test_download.py | |
parent | 7a03f88c40b80d3cf54f68edd9d4bdd6aa527570 (diff) |
[test:download] Raise on network errors (#10283)
Authored by: bashonly, seproDev
Co-authored-by: sepro <4618135+seproDev@users.noreply.github.com>
Diffstat (limited to 'test/test_download.py')
-rwxr-xr-x | test/test_download.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/test_download.py b/test/test_download.py index 882d54565..3f36869d9 100755 --- a/test/test_download.py +++ b/test/test_download.py @@ -20,7 +20,6 @@ from test.helper import ( gettestcases, getwebpagetestcases, is_download_test, - report_warning, try_rm, ) @@ -178,8 +177,7 @@ def generator(test_case, tname): raise if try_num == RETRIES: - report_warning(f'{tname} failed due to network errors, skipping...') - return + raise print(f'Retrying: {try_num} failed tries\n\n##########\n\n') |