[pypy-commit] pypy py3.5: unskip passing tests

rlamy pypy.commits at gmail.com
Sat Dec 3 22:49:04 EST 2016


Author: Ronan Lamy <ronan.lamy at gmail.com>
Branch: py3.5
Changeset: r88866:0b14b7b2521b
Date: 2016-12-04 03:31 +0000
http://bitbucket.org/pypy/pypy/changeset/0b14b7b2521b/

Log:	unskip passing tests

diff --git a/lib-python/3/test/test_urllib2_localnet.py b/lib-python/3/test/test_urllib2_localnet.py
--- a/lib-python/3/test/test_urllib2_localnet.py
+++ b/lib-python/3/test/test_urllib2_localnet.py
@@ -544,7 +544,6 @@
         self.assertEqual(handler.requests, ["/bizarre", b"get=with_feeling"])
 
     def test_https(self):
-        self.skipTest('Segfaults on PyPy')
         handler = self.start_https_server()
         context = ssl.create_default_context(cafile=CERT_localhost)
         data = self.urlopen("https://localhost:%s/bizarre" % handler.port, context=context)
@@ -574,7 +573,6 @@
                          cadefault=True)
 
     def test_https_sni(self):
-        self.skipTest('Segfaults on PyPy')
         if ssl is None:
             self.skipTest("ssl module required")
         if not ssl.HAS_SNI:


More information about the pypy-commit mailing list