diff options
author | Dana Powers <dana.powers@gmail.com> | 2017-03-14 11:38:49 -0700 |
---|---|---|
committer | Dana Powers <dana.powers@gmail.com> | 2017-03-14 12:26:37 -0700 |
commit | fd054aaea7b3e9993c6a02c6b9155dc66d69e2d3 (patch) | |
tree | 4cc5e46dd566da48bebe6d0c7e15b57c547148b1 /test/test_codec.py | |
parent | 9ba21b836731af258afb8c400f40110b3ff58ebc (diff) | |
download | kafka-python-leak_z4.tar.gz |
Alter test skips: python-lz4 works on python26, but not pypyleak_z4
Diffstat (limited to 'test/test_codec.py')
-rw-r--r-- | test/test_codec.py | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/test/test_codec.py b/test/test_codec.py index 906b53c..d31fc86 100644 --- a/test/test_codec.py +++ b/test/test_codec.py @@ -1,3 +1,6 @@ +from __future__ import absolute_import + +import platform import struct import pytest @@ -80,7 +83,8 @@ def test_snappy_encode_xerial(): assert compressed == to_ensure -@pytest.mark.skipif(not has_lz4(), reason="LZ4 not available") +@pytest.mark.skipif(not has_lz4() or platform.python_implementation() == 'PyPy', + reason="python-lz4 crashes on old versions of pypy") def test_lz4(): for i in xrange(1000): b1 = random_string(100).encode('utf-8') @@ -89,7 +93,8 @@ def test_lz4(): assert b1 == b2 -@pytest.mark.skipif(not has_lz4(), reason="LZ4 not available") +@pytest.mark.skipif(not has_lz4() or platform.python_implementation() == 'PyPy', + reason="python-lz4 crashes on old versions of pypy") def test_lz4_old(): for i in xrange(1000): b1 = random_string(100).encode('utf-8') @@ -98,8 +103,8 @@ def test_lz4_old(): assert b1 == b2 -@pytest.mark.xfail(reason="lz4tools library doesnt support incremental decompression") -@pytest.mark.skipif(not has_lz4(), reason="LZ4 not available") +@pytest.mark.skipif(not has_lz4() or platform.python_implementation() == 'PyPy', + reason="python-lz4 crashes on old versions of pypy") def test_lz4_incremental(): for i in xrange(1000): # lz4 max single block size is 4MB |