about summary refs log tree commit diff
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2017-07-20 21:19:09 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2017-07-20 21:19:09 +0800
commit85f5a74b6cf44b0c8b612c264c36eaabd958f501 (patch)
tree5b13ff7ce206fdd4bd08d4548e0fa3a486561bca
parentd20b1c6725fce956b44413cced449b7d09b12de2 (diff)
downloadyoutube-dl-85f5a74b6cf44b0c8b612c264c36eaabd958f501.tar.gz
youtube-dl-85f5a74b6cf44b0c8b612c264c36eaabd958f501.tar.xz
youtube-dl-85f5a74b6cf44b0c8b612c264c36eaabd958f501.zip
[tbs] Mark as broken and skip invalid tests
-rw-r--r--youtube_dl/extractor/tbs.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/youtube_dl/extractor/tbs.py b/youtube_dl/extractor/tbs.py
index bf93eb868..e9474533f 100644
--- a/youtube_dl/extractor/tbs.py
+++ b/youtube_dl/extractor/tbs.py
@@ -8,6 +8,9 @@ from ..utils import extract_attributes
 
 
 class TBSIE(TurnerBaseIE):
+    # https://github.com/rg3/youtube-dl/issues/13658
+    _WORKING = False
+
     _VALID_URL = r'https?://(?:www\.)?(?P<site>tbs|tntdrama)\.com/videos/(?:[^/]+/)+(?P<id>[^/?#]+)\.html'
     _TESTS = [{
         'url': 'http://www.tbs.com/videos/people-of-earth/season-1/extras/2007318/theatrical-trailer.html',
@@ -17,7 +20,8 @@ class TBSIE(TurnerBaseIE):
             'ext': 'mp4',
             'title': 'Theatrical Trailer',
             'description': 'Catch the latest comedy from TBS, People of Earth, premiering Halloween night--Monday, October 31, at 9/8c.',
-        }
+        },
+        'skip': 'TBS videos are deleted after a while',
     }, {
         'url': 'http://www.tntdrama.com/videos/good-behavior/season-1/extras/1538823/you-better-run.html',
         'md5': 'ce53c6ead5e9f3280b4ad2031a6fab56',
@@ -26,7 +30,8 @@ class TBSIE(TurnerBaseIE):
             'ext': 'mp4',
             'title': 'You Better Run',
             'description': 'Letty Raines must figure out what she\'s running toward while running away from her past. Good Behavior premieres November 15 at 9/8c.',
-        }
+        },
+        'skip': 'TBS videos are deleted after a while',
     }]
 
     def _real_extract(self, url):