Skip to content

Commit 2261fde

Browse files
committed
remove breakpoint
1 parent de10049 commit 2261fde

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/benchmarks.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
ENUM_PROPERTIES_INSTALLED = False
2727

2828

29-
BENCHMARK_FILE = Path(__file__).parent.parent.parent / "benchmarks.json"
29+
BENCHMARK_FILE = Path(__file__).parent.parent / "benchmarks.json"
3030

3131
patch_oracle()
3232

@@ -673,8 +673,8 @@ class FlagIndexTests(CreateRowMixin, SimpleTestCase):
673673

674674
CHECK_POINTS = [
675675
*(int(10**i) for i in range(1, 7)),
676-
*(int(i * ((10**7) / 5)) for i in range(1, 6)),
677-
*(int(i * ((10**8) / 5)) for i in range(1, 6)),
676+
# *(int(i * ((10**7) / 5)) for i in range(1, 6)),
677+
# *(int(i * ((10**8) / 5)) for i in range(1, 6)),
678678
# *(int(i * ((10**9) / 5)) for i in range(1, 6))
679679
]
680680

@@ -1095,9 +1095,9 @@ def test_indexes_final(self):
10951095
with tqdm(total=self.CHECK_POINTS[-1]) as pbar:
10961096
check_point = self.CHECK_POINTS[-1]
10971097
self.create_rows(check_point, pbar)
1098-
import ipdb
1098+
# import ipdb
10991099

1100-
ipdb.set_trace()
1100+
# ipdb.set_trace()
11011101

11021102
def drop_indexes(self):
11031103
def drop_index(table, index):

0 commit comments

Comments
 (0)