Skip to content

Commit 2a6d559

Browse files
committed
Loosen speed tolerance
1 parent 60fac72 commit 2a6d559

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integration/database/test_integration_speed.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ def test_overhead(groupby, tmpdir):
8181
# Ok, particularly given how few files we're dealing with.
8282
# This is mainly about avoiding a factor of 10
8383
# (which was the difference we were getting in earlier implemenations).
84-
tol_save = 0.25
85-
tol_load = 0.2
84+
tol_save = 0.4
85+
tol_load = 0.3
8686

8787
overhead = (time_db_save - time_pandas_save) / time_pandas_save
8888
assert overhead <= tol_save, f"Overhead is more than {tol_save*100}%"

0 commit comments

Comments
 (0)