diff options
Diffstat (limited to 'test/test_download.py')
-rw-r--r-- | test/test_download.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/test_download.py b/test/test_download.py index 067bde4bb..0428a79fe 100644 --- a/test/test_download.py +++ b/test/test_download.py @@ -58,6 +58,13 @@ def _file_md5(fn): with io.open(DEF_FILE, encoding='utf-8') as deff: defs = json.load(deff) +for ie in youtube_dl.extractor.gen_extractors(): + t = getattr(ie, '_TEST', None) + if t: + t['name'] = type(ie).__name__[:-len('IE')] + defs.append(t) + + with io.open(PARAMETERS_FILE, encoding='utf-8') as pf: parameters = json.load(pf) |