Skip to content

Commit 92f3e33

Browse files
committed
debugging travis build error
1 parent d93be12 commit 92f3e33

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/columns/test_bigint.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,15 @@ def test_length(self):
2727
max_value = int(2 ** 64 / 2) - 1
2828
min_value = max_value * -1
2929

30+
print("Testing max value")
3031
row = MyTable(value=max_value)
3132
row.save().run_sync()
3233

34+
print("Testing min value")
3335
row.value = min_value
3436
row.save().run_sync()
3537

38+
print("Test exceeding max value")
3639
with self.assertRaises(Exception):
3740
row.value = max_value + 100
3841
row.save().run_sync()

0 commit comments

Comments
 (0)