]> jfr.im git - yt-dlp.git/blobdiff - test/test_download.py
Bugfix for ebe1b4e34f43c3acad30e4bcb8484681a030c114
[yt-dlp.git] / test / test_download.py
index 7ee8c7c432cefa47e34951aeac82ee83b66f7665..43b39c36b3c77cceddd46143a0f3806ec3ae9a5a 100755 (executable)
@@ -106,7 +106,7 @@ def print_skipping(reason):
             params = tc.get('params', {})
             if not info_dict.get('id'):
                 raise Exception(f'Test {tname} definition incorrect - "id" key is not present')
-            elif not info_dict.get('ext'):
+            elif not info_dict.get('ext') and info_dict.get('_type', 'video') == 'video':
                 if params.get('skip_download') and params.get('ignore_no_formats_error'):
                     continue
                 raise Exception(f'Test {tname} definition incorrect - "ext" key must be present to define the output file')
@@ -213,6 +213,8 @@ def try_rm_tcs_files(tcs=None):
                 tc_res_dict = res_dict['entries'][tc_num]
                 # First, check test cases' data against extracted data alone
                 expect_info_dict(self, tc_res_dict, tc.get('info_dict', {}))
+                if tc_res_dict.get('_type', 'video') != 'video':
+                    continue
                 # Now, check downloaded file consistency
                 tc_filename = get_tc_filename(tc)
                 if not test_case.get('params', {}).get('skip_download', False):