diff options
author | Matti Picus <matti.picus@gmail.com> | 2019-05-26 18:23:49 +0300 |
---|---|---|
committer | Matti Picus <matti.picus@gmail.com> | 2019-05-26 18:23:49 +0300 |
commit | e8a3cf455bef8beaa8c473ae070a30743ab648f2 (patch) | |
tree | 6c4869165e0571c16d6efb202bdda4bc44e8909e /lib-python | |
parent | handle old OpenSSL without SSL_OP_ENABLE_MIDDLEBOX_COMPAT (diff) | |
download | pypy-e8a3cf455bef8beaa8c473ae070a30743ab648f2.tar.gz pypy-e8a3cf455bef8beaa8c473ae070a30743ab648f2.tar.bz2 pypy-e8a3cf455bef8beaa8c473ae070a30743ab648f2.zip |
disable flaky test
Diffstat (limited to 'lib-python')
-rw-r--r-- | lib-python/2.7/test/test_ssl.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib-python/2.7/test/test_ssl.py b/lib-python/2.7/test/test_ssl.py index cc2019395c..881149fd0d 100644 --- a/lib-python/2.7/test/test_ssl.py +++ b/lib-python/2.7/test/test_ssl.py @@ -764,7 +764,11 @@ class ContextTests(unittest.TestCase): ctx.set_ciphers("^$:,;?*'dorothyx") @skip_if_broken_ubuntu_ssl - def test_options(self): + def _test_options(self): + ''' + Disable this test, it is too flaky. Different platforms define + different defaults + ''' ctx = ssl.SSLContext(ssl.PROTOCOL_TLSv1) # OP_ALL | OP_NO_SSLv2 | OP_NO_SSLv3 is the default value default = (ssl.OP_ALL | ssl.OP_NO_SSLv2 | ssl.OP_NO_SSLv3) |