Test rtmpdump on travis (Fixes #1601)
authorPhilipp Hagemeister <phihag@phihag.de>
Sun, 25 Jan 2015 03:56:32 +0000 (04:56 +0100)
committerPhilipp Hagemeister <phihag@phihag.de>
Sun, 25 Jan 2015 03:56:32 +0000 (04:56 +0100)
.travis.yml
youtube_dl/extractor/folketinget.py

index f140144149920ed025f36101a413165516be17ec..fb34299fced3f24a7f4de265aadf3094299d6523 100644 (file)
@@ -4,6 +4,9 @@ python:
   - "2.7"
   - "3.3"
   - "3.4"
+before_install:
+  - sudo apt-get update -qq
+  - sudo apt-get install -yqq rtmpdump
 script: nosetests test --verbose
 notifications:
   email:
index 68e2db94385bc7f51d7f27a68d61d5e4289ba0c9..0fb29de75228f0133c0b8d54a015fbd5d90954c1 100644 (file)
@@ -16,6 +16,7 @@ class FolketingetIE(InfoExtractor):
     _VALID_URL = r'https?://(?:www\.)?ft\.dk/webtv/video/[^?#]*?\.(?P<id>[0-9]+)\.aspx'
     _TEST = {
         'url': 'http://www.ft.dk/webtv/video/20141/eru/td.1165642.aspx?as=1#player',
+        'md5': '6269e8626fa1a891bf5369b386ae996a',
         'info_dict': {
             'id': '1165642',
             'ext': 'mp4',
@@ -29,9 +30,6 @@ class FolketingetIE(InfoExtractor):
             'upload_date': '20141120',
             'duration': 3960,
         },
-        'params': {
-            'skip_download': 'rtmpdump required',
-        }
     }
 
     def _real_extract(self, url):