浏览代码

Remove .part files before and after tests

Philipp Hagemeister 12 年之前
父节点
当前提交
3a648b209c
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      test/test_download.py

+ 2 - 0
test/test_download.py

@@ -85,6 +85,7 @@ def generator(test_case):
         test_cases = test_case.get('playlist', [test_case])
         test_cases = test_case.get('playlist', [test_case])
         for tc in test_cases:
         for tc in test_cases:
             _try_rm(tc['file'])
             _try_rm(tc['file'])
+            _try_rm(tc['file'] + '.part')
             _try_rm(tc['file'] + '.info.json')
             _try_rm(tc['file'] + '.info.json')
         try:
         try:
             fd.download([test_case['url']])
             fd.download([test_case['url']])
@@ -107,6 +108,7 @@ def generator(test_case):
         finally:
         finally:
             for tc in test_cases:
             for tc in test_cases:
                 _try_rm(tc['file'])
                 _try_rm(tc['file'])
+                _try_rm(tc['file'] + '.part')
                 _try_rm(tc['file'] + '.info.json')
                 _try_rm(tc['file'] + '.info.json')
 
 
     return test_template
     return test_template