summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorОлег <[email protected]>2024-11-21 17:44:09 +0300
committerGitHub <[email protected]>2024-11-21 14:44:09 +0000
commit7ec3879a9ddc892fa0dc603c3e963ae36ca87d42 (patch)
tree99afde371dbc41586ab39ce293482a3e720d3c35
parent2b451a929fb909024e84494a3b04844304d02e32 (diff)
increase timeout on tpch 1000 (#11850)
-rw-r--r--ydb/tests/olap/load/test_tpch.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/ydb/tests/olap/load/test_tpch.py b/ydb/tests/olap/load/test_tpch.py
index 1291ca5135c..dc3442e1336 100644
--- a/ydb/tests/olap/load/test_tpch.py
+++ b/ydb/tests/olap/load/test_tpch.py
@@ -73,10 +73,7 @@ class TestTpch100(TpchSuiteBase):
class TestTpch1000(TpchSuiteBase):
scale: int = 1000
check_canonical: bool = False
- timeout = max(TpchSuiteBase.timeout, 1000.)
- query_settings = {
- 9: LoadSuiteBase.QuerySettings(timeout=max(TpchSuiteBase.timeout, 3600.)),
- }
+ timeout = max(TpchSuiteBase.timeout, 3600.)
class TestTpch10000(TpchSuiteBase):