We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentd84c15b commit0c0ea0cCopy full SHA for 0c0ea0c
tests/e2e/common/large_queries_mixin.py
@@ -83,11 +83,11 @@ def test_query_with_large_narrow_result_set(self):
83
assertrow[0]==row_id
84
85
deftest_long_running_query(self):
86
-"""Incrementally increase query size until it takes at least4 minutes,
+"""Incrementally increase query size until it takes at least5 minutes,
87
and asserts that the query completes successfully.
88
"""
89
minutes=60
90
-min_duration=4*minutes
+min_duration=5*minutes
91
92
duration=-1
93
scale0=10000
@@ -113,5 +113,5 @@ def test_long_running_query(self):
113
duration=time.time()-start
114
current_fraction=duration/min_duration
115
print("Took {} s with scale factor={}".format(duration,scale_factor))
116
-# Extrapolate linearly to reach4 min and add 50% padding to push over the limit
+# Extrapolate linearly to reach5 min and add 50% padding to push over the limit
117
scale_factor=math.ceil(1.5*scale_factor/current_fraction)