[tests] skip 'test_init_ytdl' on Python<3.6

It passes without error in a Python 3.4/3.5 venv on my own machine,
but fails for some inexplicable reason on Github Actions.
This commit is contained in:
Mike Fährmann
2023-08-10 23:27:36 +02:00
parent f9fb276e81
commit d319777a24

View File

@@ -143,6 +143,7 @@ class TestExtractorModule(unittest.TestCase):
extr.finalize()
break
@unittest.skipIf(sys.hexversion < 0x3060000, "test fails in CI")
def test_init_ytdl(self):
try:
extr = extractor.find("ytdl:")