mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
Remove .part files before and after tests
This commit is contained in:
parent
c80f0a417a
commit
3a648b209c
1 changed files with 2 additions and 0 deletions
|
@ -85,6 +85,7 @@ def test_template(self):
|
|||
test_cases = test_case.get('playlist', [test_case])
|
||||
for tc in test_cases:
|
||||
_try_rm(tc['file'])
|
||||
_try_rm(tc['file'] + '.part')
|
||||
_try_rm(tc['file'] + '.info.json')
|
||||
try:
|
||||
fd.download([test_case['url']])
|
||||
|
@ -107,6 +108,7 @@ def test_template(self):
|
|||
finally:
|
||||
for tc in test_cases:
|
||||
_try_rm(tc['file'])
|
||||
_try_rm(tc['file'] + '.part')
|
||||
_try_rm(tc['file'] + '.info.json')
|
||||
|
||||
return test_template
|
||||
|
|
Loading…
Reference in a new issue