Author: &#321;ukasz Langa <[email protected]>
Branch: py3.6
Changeset: r95787:81bdf2c6ef55
Date: 2019-02-04 15:21 +0100
http://bitbucket.org/pypy/pypy/changeset/81bdf2c6ef55/

Log:    (cfbolz,ambv) Skip CPython-only tests in zlib

        See: https://github.com/python/cpython/pull/11754

diff --git a/lib-python/3/test/test_zlib.py b/lib-python/3/test/test_zlib.py
--- a/lib-python/3/test/test_zlib.py
+++ b/lib-python/3/test/test_zlib.py
@@ -164,6 +164,7 @@
         x = zlib.compress(HAMLET_SCENE)
         self.assertEqual(zlib.decompress(x), HAMLET_SCENE)
 
+    @support.cpython_only
     def test_keywords(self):
         x = zlib.compress(HAMLET_SCENE, level=3)
         self.assertEqual(zlib.decompress(x), HAMLET_SCENE)
@@ -244,6 +245,7 @@
             self.assertIsInstance(dco.unconsumed_tail, bytes)
             self.assertIsInstance(dco.unused_data, bytes)
 
+    @support.cpython_only
     def test_keywords(self):
         level = 2
         method = zlib.DEFLATED
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to