mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 01:02:48 +01:00
[tests] Raise an exception if test definition is invalid (Found in #2460)
This commit is contained in:
parent
7d75d06b78
commit
2437fbca64
@ -73,9 +73,7 @@ def print_skipping(reason):
|
|||||||
if 'playlist' not in test_case:
|
if 'playlist' not in test_case:
|
||||||
info_dict = test_case.get('info_dict', {})
|
info_dict = test_case.get('info_dict', {})
|
||||||
if not test_case.get('file') and not (info_dict.get('id') and info_dict.get('ext')):
|
if not test_case.get('file') and not (info_dict.get('id') and info_dict.get('ext')):
|
||||||
print_skipping('The output file cannot be know, the "file" '
|
raise Exception('Test definition incorrect. The output file cannot be known. Are both \'id\' and \'ext\' keys present?')
|
||||||
'key is missing or the info_dict is incomplete')
|
|
||||||
return
|
|
||||||
if 'skip' in test_case:
|
if 'skip' in test_case:
|
||||||
print_skipping(test_case['skip'])
|
print_skipping(test_case['skip'])
|
||||||
return
|
return
|
||||||
|
Loading…
Reference in New Issue
Block a user