diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-04-22 14:32:54 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-04-22 16:54:07 +0530 |
commit | 1bdae7d312ceac9ecef8a9a215d958811a9fb6be (patch) | |
tree | 9a5a8fbbf19bd953c3c95d5d9ae576ac5c4c3f82 /test/test_execution.py | |
parent | a471f21da628b9526c3f177c59ca2fc076e8b68b (diff) | |
download | hypervideo-pre-1bdae7d312ceac9ecef8a9a215d958811a9fb6be.tar.lz hypervideo-pre-1bdae7d312ceac9ecef8a9a215d958811a9fb6be.tar.xz hypervideo-pre-1bdae7d312ceac9ecef8a9a215d958811a9fb6be.zip |
Update to ytdl-commit-7e8b3f9
[youtube] Remove unused code
https://github.com/ytdl-org/youtube-dl/commit/7e8b3f9439ebefb3a3a4e5da9c0bd2b595976438
Diffstat (limited to 'test/test_execution.py')
-rw-r--r-- | test/test_execution.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/test_execution.py b/test/test_execution.py index 2aea4df1b..8a0d65bfb 100644 --- a/test/test_execution.py +++ b/test/test_execution.py @@ -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() |