Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions tests/test_seekable.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@

from io import BytesIO
from math import ceil
from sysconfig import get_config_var
from unittest.mock import patch

from pyzstd import (
Expand Down Expand Up @@ -539,6 +540,7 @@ def test_load_bad2(self):
'cumulated compressed size'):
t.load_seek_table(b, seek_to_0=True)

@unittest.skipIf(get_config_var('SIZEOF_SIZE_T') == 4, 'skip in 32-bit build')
def test_write_table(self):
class MockError(Exception):
pass
Expand Down