diff options
author | Олег <[email protected]> | 2025-06-09 20:07:39 +0300 |
---|---|---|
committer | GitHub <[email protected]> | 2025-06-09 17:07:39 +0000 |
commit | 8c17ecee725592f2dedec849bf9449bda552d04d (patch) | |
tree | dd8afe10658ee4c3e3f91787db281d0888dab981 | |
parent | bb8cc77d02904c9f12f5bac205036935c1eddd64 (diff) |
unset timeout in tests by default (#19520)
-rw-r--r-- | ydb/tests/olap/scenario/helpers/scenario_tests_helper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/tests/olap/scenario/helpers/scenario_tests_helper.py b/ydb/tests/olap/scenario/helpers/scenario_tests_helper.py index 20e66198e21..6ead130979e 100644 --- a/ydb/tests/olap/scenario/helpers/scenario_tests_helper.py +++ b/ydb/tests/olap/scenario/helpers/scenario_tests_helper.py @@ -439,7 +439,7 @@ class ScenarioTestHelper: @classmethod @allure.step('Execute scan query') def execute_scan_query( - cls, yql: str, expected_status: ydb.StatusCode | Set[ydb.StatusCode] = ydb.StatusCode.SUCCESS, timeout=10 + cls, yql: str, expected_status: ydb.StatusCode | Set[ydb.StatusCode] = ydb.StatusCode.SUCCESS, timeout=None ): """Run a scanning query on the tested database. |