Skip to content

Commit 0c36bed

Browse files
authored
bpo-32458: Temporarily mask start-tls proactor test on Windows (#5054)
1 parent deae6b4 commit 0c36bed

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Lib/test/test_asyncio/test_sslproto.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
"""Tests for asyncio/sslproto.py."""
22

3+
import os
34
import logging
45
import unittest
56
from unittest import mock
@@ -296,15 +297,16 @@ async def main():
296297

297298

298299
@unittest.skipIf(ssl is None, 'No ssl module')
299-
class SelectorStartTLS(BaseStartTLS, unittest.TestCase):
300+
class SelectorStartTLSTests(BaseStartTLS, unittest.TestCase):
300301

301302
def new_loop(self):
302303
return asyncio.SelectorEventLoop()
303304

304305

305306
@unittest.skipIf(ssl is None, 'No ssl module')
306307
@unittest.skipUnless(hasattr(asyncio, 'ProactorEventLoop'), 'Windows only')
307-
class ProactorStartTLS(BaseStartTLS, unittest.TestCase):
308+
@unittest.skipIf(os.environ.get('APPVEYOR'), 'XXX: issue 32458')
309+
class ProactorStartTLSTests(BaseStartTLS, unittest.TestCase):
308310

309311
def new_loop(self):
310312
return asyncio.ProactorEventLoop()

0 commit comments

Comments
 (0)