mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-06-02 18:52:01 +02:00
[tests] Don't auto init YoutubeDL
It would print the debug headers for each test. And nose uses a StringIO object for stdout, which in python 2.x doesn't have the 'encoding' attribute.
This commit is contained in:
parent
42f7d2f588
commit
ac35c26686
2 changed files with 2 additions and 2 deletions
|
@ -96,7 +96,7 @@ def generator(test_case):
|
|||
params.setdefault('extract_flat', True)
|
||||
params.setdefault('skip_download', True)
|
||||
|
||||
ydl = YoutubeDL(params)
|
||||
ydl = YoutubeDL(params, auto_init=False)
|
||||
ydl.add_default_info_extractors()
|
||||
finished_hook_called = set()
|
||||
def _hook(status):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue