diff options
| author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-11-25 22:03:20 +0100 | 
|---|---|---|
| committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-11-25 22:03:20 +0100 | 
| commit | 1a62c18f6521803ab41483f5da56fc72957d7655 (patch) | |
| tree | e5a3c28d03ff1f4f6e43cfef2264c9bd6ab06a72 | |
| parent | bb2bebdbe1ef06adc3c1cb2d078e061f44cf7d29 (diff) | |
[bambuser] Skip the download in the test
It doesn't respect the 'Range' header.
| -rw-r--r-- | youtube_dl/extractor/bambuser.py | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/youtube_dl/extractor/bambuser.py b/youtube_dl/extractor/bambuser.py index 967568c4a..b80508efe 100644 --- a/youtube_dl/extractor/bambuser.py +++ b/youtube_dl/extractor/bambuser.py @@ -25,6 +25,11 @@ class BambuserIE(InfoExtractor):              u'uploader': u'pixelversity',              u'uploader_id': u'344706',          }, +        u'params': { +            # It doesn't respect the 'Range' header, it would download the whole video +            # caused the travis builds to fail: https://travis-ci.org/rg3/youtube-dl/jobs/14493845#L59 +            u'skip_download': True, +        },      }      def _real_extract(self, url): | 
