Skip to content

Commit 00e141f

Browse files
authored
test: Increase long test execution (#364)
1 parent 242ef80 commit 00e141f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/integration/dbapi/async/V2/test_queries_async.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ async def test_long_query(
134134

135135
with connection.cursor() as c:
136136
await c.execute(
137-
"SELECT checksum(*) FROM GENERATE_SERIES(1, 200000000000)", # approx 6m runtime
137+
"SELECT checksum(*) FROM GENERATE_SERIES(1, 400000000000)", # approx 6m runtime
138138
)
139139
data = await c.fetchall()
140140
assert len(data) == 1, "Invalid data size returned by fetchall"

tests/integration/dbapi/sync/V2/test_queries.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ def test_long_query(
138138

139139
with connection.cursor() as c:
140140
c.execute(
141-
"SELECT checksum(*) FROM GENERATE_SERIES(1, 200000000000)", # approx 6m runtime
141+
"SELECT checksum(*) FROM GENERATE_SERIES(1, 400000000000)", # approx 6m runtime
142142
)
143143
data = c.fetchall()
144144
assert len(data) == 1, "Invalid data size returned by fetchall"

0 commit comments

Comments
 (0)