mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 09:07:58 +01:00
[bambuser] Skip the download in the test
It doesn't respect the 'Range' header.
This commit is contained in:
parent
bb2bebdbe1
commit
1a62c18f65
1 changed files with 5 additions and 0 deletions
|
@ -25,6 +25,11 @@ class BambuserIE(InfoExtractor):
|
||||||
u'uploader': u'pixelversity',
|
u'uploader': u'pixelversity',
|
||||||
u'uploader_id': u'344706',
|
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):
|
def _real_extract(self, url):
|
||||||
|
|
Loading…
Reference in a new issue