Skip to content

Commit 1063147

Browse files
committed
skip test on pypy
1 parent 4caa07f commit 1063147

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

test/asynchronous/test_ssl.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,8 @@ async def asyncTearDown(self):
166166

167167
@async_client_context.require_tls
168168
async def test_simple_ssl(self):
169+
if "PyPy" in sys.version:
170+
self.skipTest("Test is flaky on PyPy")
169171
# Expects the server to be running with ssl and with
170172
# no --sslPEMKeyFile or with --sslWeakCertificateValidation
171173
await self.assertClientWorks(self.client)

test/test_ssl.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,8 @@ def tearDown(self):
166166

167167
@client_context.require_tls
168168
def test_simple_ssl(self):
169+
if "PyPy" in sys.version:
170+
self.skipTest("Test is flaky on PyPy")
169171
# Expects the server to be running with ssl and with
170172
# no --sslPEMKeyFile or with --sslWeakCertificateValidation
171173
self.assertClientWorks(self.client)

0 commit comments

Comments
 (0)