aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorОлег <150132506+iddqdex@users.noreply.github.com>2024-07-18 18:47:08 +0300
committerGitHub <noreply@github.com>2024-07-18 18:47:08 +0300
commit095ec1273f6d61f19db05f15c3035170250dc3a9 (patch)
tree88452030dcb2fb221cf7e3bb0a7ae10711a28216
parent6de734054b9e3217fd9d997921cfb0cf9492f0bb (diff)
downloadydb-095ec1273f6d61f19db05f15c3035170250dc3a9.tar.gz
Add test for tpcds1000, increacse timeout (#6835)
-rw-r--r--ydb/tests/olap/load/test_tpcds.py7
-rw-r--r--ydb/tests/olap/load/test_tpch.py5
2 files changed, 11 insertions, 1 deletions
diff --git a/ydb/tests/olap/load/test_tpcds.py b/ydb/tests/olap/load/test_tpcds.py
index 1a4cbe90ac..3e4510ba08 100644
--- a/ydb/tests/olap/load/test_tpcds.py
+++ b/ydb/tests/olap/load/test_tpcds.py
@@ -29,4 +29,9 @@ class TestTpcds10(TpcdsSuiteBase):
class TestTpcds100(TpcdsSuiteBase):
size: int = 100
- timeout = max(TpcdsSuiteBase.timeout, 900.)
+ timeout = max(TpcdsSuiteBase.timeout, 3600.)
+
+
+class TestTpcds1000(TpcdsSuiteBase):
+ size: int = 1000
+ timeout = max(TpcdsSuiteBase.timeout, 3*3600.)
diff --git a/ydb/tests/olap/load/test_tpch.py b/ydb/tests/olap/load/test_tpch.py
index c7da8c26c9..17d3fecd4d 100644
--- a/ydb/tests/olap/load/test_tpch.py
+++ b/ydb/tests/olap/load/test_tpch.py
@@ -34,3 +34,8 @@ class TestTpch100(TpchSuiteBase):
class TestTpch1000(TpchSuiteBase):
size: int = 1000
timeout = max(TpchSuiteBase.timeout, 1000.)
+
+
+class TestTpch10000(TpchSuiteBase):
+ size: int = 10000
+ timeout = max(TpchSuiteBase.timeout, 3600.)