[pypy-commit] pypy default: skip test on old zlib version

mattip pypy.commits at gmail.com
Sun Feb 10 10:15:33 EST 2019


Author: Matti Picus <matti.picus at gmail.com>
Branch: 
Changeset: r95926:0105b3a8389f
Date: 2019-02-10 17:13 +0200
http://bitbucket.org/pypy/pypy/changeset/0105b3a8389f/

Log:	skip test on old zlib version

diff --git a/rpython/rlib/test/test_rzlib.py b/rpython/rlib/test/test_rzlib.py
--- a/rpython/rlib/test/test_rzlib.py
+++ b/rpython/rlib/test/test_rzlib.py
@@ -274,7 +274,7 @@
     rzlib.deflateEnd(copied)
     assert bytes1 + bytes_copy == compressed
 
-
+ at py.test.mark.skipif(rzlib.ZLIB_VERSION == '1.2.8', reason='does not error check')
 def test_unsuccessful_compress_copy():
     """
     Errors during unsuccesful deflateCopy operations raise RZlibErrors.


More information about the pypy-commit mailing list