diff options
author | Sergey M․ <dstftw@gmail.com> | 2014-04-28 19:52:32 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2014-04-28 19:52:32 +0700 |
commit | 8a7a4a979683a6a48af0eea039ed392934f89b0a (patch) | |
tree | 6d5bed4049f77c1bbec245ff1761fdae0f637eee /youtube_dl | |
parent | 7c360e3a04f09b912f51034c7778eb2297872e86 (diff) |
[scivee] Skip test for now
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/scivee.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/youtube_dl/extractor/scivee.py b/youtube_dl/extractor/scivee.py index 609a5ec99..33a78759a 100644 --- a/youtube_dl/extractor/scivee.py +++ b/youtube_dl/extractor/scivee.py @@ -11,13 +11,17 @@ class SciVeeIE(InfoExtractor): _TEST = { 'url': 'http://www.scivee.tv/node/62352', - 'md5': 'b16699b74c9e6a120f6772a44960304f', + #'md5': 'b16699b74c9e6a120f6772a44960304f', 'info_dict': { 'id': '62352', 'ext': 'mp4', 'title': 'Adam Arkin at the 2014 DOE JGI Genomics of Energy & Environment Meeting', 'description': 'md5:81f1710638e11a481358fab1b11059d7', - } + }, + 'params': { + # Range HTTP header is ignored + 'skip_download': True, + }, } def _real_extract(self, url): |