We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e7432a commit ad13468Copy full SHA for ad13468
1 file changed
python/python/tests/weekly/test_weekly.py
@@ -6,6 +6,7 @@
6
7
import abc
8
import itertools
9
+from datetime import timedelta
10
from typing import Optional
11
12
import lance
@@ -221,6 +222,7 @@ def test_all_permutations(with_position):
221
222
write_operation = write_operations[idx]
223
print(f"Running {write_operation.__class__.__name__}")
224
write_operation.run(ds)
225
+ ds.cleanup_old_versions(older_than=timedelta(seconds=0))
226
227
# write operation changed the status of the table,
228
# then we need to run all read only operations after it
0 commit comments