summary refs log tree commit diff
diff options
context:
space:
mode:
authorFilippo Valsorda <filippo.valsorda@gmail.com>2013-10-28 19:07:16 -0400
committerFilippo Valsorda <filippo.valsorda@gmail.com>2013-10-28 19:07:16 -0400
commitf6cc16f5d821a50df173b865164e4fa9cbe854af (patch)
treeb03374ba97452dcc53de012b908855346c750f8d
parent321a01f97110c3048e9d9c360a099d1ec8cd4479 (diff)
downloadyoutube-dl-f6cc16f5d821a50df173b865164e4fa9cbe854af.tar.gz
youtube-dl-f6cc16f5d821a50df173b865164e4fa9cbe854af.tar.xz
youtube-dl-f6cc16f5d821a50df173b865164e4fa9cbe854af.zip
[tests] a HTTP 503 is a transient issue
-rw-r--r--test/test_download.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/test_download.py b/test/test_download.py
index 565afa1b5..dfb04d010 100644
--- a/test/test_download.py
+++ b/test/test_download.py
@@ -26,6 +26,7 @@ import youtube_dl.YoutubeDL
 from youtube_dl.utils import (
     compat_str,
     compat_urllib_error,
+    compat_HTTPError,
     DownloadError,
     ExtractorError,
     UnavailableVideoError,
@@ -105,7 +106,7 @@ def generator(test_case):
                     ydl.download([test_case['url']])
                 except (DownloadError, ExtractorError) as err:
                     # Check if the exception is not a network related one
-                    if not err.exc_info[0] in (compat_urllib_error.URLError, socket.timeout, UnavailableVideoError):
+                    if not err.exc_info[0] in (compat_urllib_error.URLError, socket.timeout, UnavailableVideoError) or (err.exc_info[0] == compat_HTTPError and err.exc_info[1].code == 503):
                         raise
 
                     if try_num == RETRIES: