aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatti Picus <matti.picus@gmail.com>2021-04-03 22:56:35 +0300
committerMatti Picus <matti.picus@gmail.com>2021-04-03 22:56:35 +0300
commit5136c84ebe3ab4353a4744ea229105331ad66771 (patch)
treea56761f3080fe35a4090e5758ff19b337cf5a8f4
parentrevert pyrepl to 8ef001285964, before merging upstream (diff)
downloadpypy-5136c84ebe3ab4353a4744ea229105331ad66771.tar.gz
pypy-5136c84ebe3ab4353a4744ea229105331ad66771.tar.bz2
pypy-5136c84ebe3ab4353a4744ea229105331ad66771.zip
skip zlib test on 1.2.7 too (manylinux2014 buildbot)
-rw-r--r--pypy/module/zlib/test/test_zlib.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pypy/module/zlib/test/test_zlib.py b/pypy/module/zlib/test/test_zlib.py
index dbf3701a68..81553076e5 100644
--- a/pypy/module/zlib/test/test_zlib.py
+++ b/pypy/module/zlib/test/test_zlib.py
@@ -345,7 +345,7 @@ class AppTestZlib(object):
assert (d1 + from_copy) == (d1 + from_compressor)
- @py.test.mark.skipif(rzlib.ZLIB_VERSION in ('1.2.8', '1.2.3'), reason='does not error check')
+ @py.test.mark.skipif(rzlib.ZLIB_VERSION in ('1.2.7', '1.2.8', '1.2.3'), reason='does not error check')
def test_cannot_copy_compressor_with_stream_in_inconsistent_state(self):
if self.runappdirect: skip("can't run with -A")
compressor = self.zlib.compressobj()