[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.
pull/4451/head
Mike Fährmann 1 year ago
parent f9fb276e81
commit d319777a24
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

@ -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:")

Loading…
Cancel
Save