Skip to content

Commit

Permalink
skip test_overflow in debug mode
Browse files Browse the repository at this point in the history
  • Loading branch information
ilanschnell committed Oct 4, 2024
1 parent b273ab4 commit 32674fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bitarray/test_bitarray.py
Original file line number Diff line number Diff line change
Expand Up @@ -1751,7 +1751,7 @@ def test_endianness4(self):
self.assertEqual(b.tobytes(), b' ')
self.assertNotEqual(a, b)

@skipIf(is_pypy)
@skipIf(is_pypy or DEBUG)
def test_overflow(self):
a = bitarray(1)
for i in -7, -1, 0, 1:
Expand Down

0 comments on commit 32674fd

Please sign in to comment.