浏览代码

[bambuser] Skip the download in the test

It doesn't respect the 'Range' header.
Jaime Marquínez Ferrándiz 11 年之前
父节点
当前提交
1a62c18f65
共有 1 个文件被更改,包括 5 次插入0 次删除
  1. 5 0
      youtube_dl/extractor/bambuser.py

+ 5 - 0
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):