Skip to content

Commit

Permalink
Fix db-benchmark failure as queries sometimes take slightly more than…
Browse files Browse the repository at this point in the history
… 10 seconds.
  • Loading branch information
ghuls authored and ritchie46 committed Nov 10, 2021
1 parent 12f22d7 commit 6f05eda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions py-polars/tests/db-benchmark/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,8 +233,8 @@
assert out.shape == (9999995, 8)

if not ON_STRINGS:
if total_time > 10:
print("query took longer than 10s, may be noise")
if total_time > 11:
print("query took longer than 11s, may be noise")
exit(1)

# Additional tests
Expand Down

0 comments on commit 6f05eda

Please sign in to comment.