Skip to content

Commit

Permalink
Skip test failing on 32-bit architectures (#290)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastic authored Oct 17, 2023
1 parent 19ee0ac commit 7f3ea6c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/test_index.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import ctypes
import pickle
import sys
import tempfile
import unittest
from typing import Iterator
Expand Down Expand Up @@ -451,6 +452,7 @@ def test_custom_filenames(self) -> None:
self.assertTrue(len(hits), 10)
self.assertEqual(hits, [0, 4, 16, 27, 35, 40, 47, 50, 76, 80])

@pytest.mark.skipif(not sys.maxsize > 2**32, reason="Fails on 32bit systems")
def test_interleaving(self) -> None:
"""Streaming against a persisted index without interleaving"""

Expand Down

0 comments on commit 7f3ea6c

Please sign in to comment.