diff options
| author | Antoine Pitrou <solipsis@pitrou.net> | 2010-10-22 18:24:20 (GMT) |
|---|---|---|
| committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-10-22 18:24:20 (GMT) |
| commit | eb585adbde24fc40f95a8bdf8099d71e82ce50ec (patch) | |
| tree | 6886e594940324ab282fb9333e930ac77249136e | |
| parent | d532321f7ba2e23e4110f05331fee8beca736826 (diff) | |
| download | cpython-eb585adbde24fc40f95a8bdf8099d71e82ce50ec.zip cpython-eb585adbde24fc40f95a8bdf8099d71e82ce50ec.tar.gz cpython-eb585adbde24fc40f95a8bdf8099d71e82ce50ec.tar.bz2 | |
Fix test_ssl on Ubuntu buildbot with patched OpenSSL
| -rw-r--r-- | Lib/test/test_ssl.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_ssl.py b/Lib/test/test_ssl.py index 67bc01a..b11723c 100644 --- a/Lib/test/test_ssl.py +++ b/Lib/test/test_ssl.py @@ -391,6 +391,7 @@ class ContextTests(unittest.TestCase): ctx.load_verify_locations(CERTFILE, CAPATH) ctx.load_verify_locations(CERTFILE, capath=BYTES_CAPATH) + @skip_if_broken_ubuntu_ssl def test_session_stats(self): for proto in PROTOCOLS: ctx = ssl.SSLContext(proto) |
