Update to ytdl-commit-7e8b3f9

[youtube] Remove unused code
7e8b3f9439
This commit is contained in:
pukkandan 2021-04-22 14:32:54 +05:30
parent a471f21da6
commit 1bdae7d312
No known key found for this signature in database
GPG key ID: 0F00D95A001F4698
6 changed files with 110 additions and 27 deletions

View file

@ -39,6 +39,16 @@ class TestExecution(unittest.TestCase):
_, stderr = p.communicate()
self.assertFalse(stderr)
def test_lazy_extractors(self):
try:
subprocess.check_call([sys.executable, 'devscripts/make_lazy_extractors.py', 'yt_dlp/extractor/lazy_extractors.py'], cwd=rootDir, stdout=_DEV_NULL)
subprocess.check_call([sys.executable, 'test/test_all_urls.py'], cwd=rootDir, stdout=_DEV_NULL)
finally:
try:
os.remove('yt_dlp/extractor/lazy_extractors.py')
except (IOError, OSError):
pass
if __name__ == '__main__':
unittest.main()