diff options
author | Олег <150132506+iddqdex@users.noreply.github.com> | 2024-07-18 18:47:08 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-18 18:47:08 +0300 |
commit | 095ec1273f6d61f19db05f15c3035170250dc3a9 (patch) | |
tree | 88452030dcb2fb221cf7e3bb0a7ae10711a28216 | |
parent | 6de734054b9e3217fd9d997921cfb0cf9492f0bb (diff) | |
download | ydb-095ec1273f6d61f19db05f15c3035170250dc3a9.tar.gz |
Add test for tpcds1000, increacse timeout (#6835)
-rw-r--r-- | ydb/tests/olap/load/test_tpcds.py | 7 | ||||
-rw-r--r-- | ydb/tests/olap/load/test_tpch.py | 5 |
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.) |