aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/minirun/part9/test.py
diff options
context:
space:
mode:
authorvvvv <vvvv@yandex-team.com>2025-01-20 16:38:10 +0300
committervvvv <vvvv@yandex-team.com>2025-01-20 17:00:30 +0300
commit6b3e7777077b0112e088056abc7093db18d7bec0 (patch)
treedd79c706aadcb821936dfcf375a58b6adb2d00fd /yql/essentials/tests/sql/minirun/part9/test.py
parentb6a2451a8ed4ad6c210751fcf6ae3d28998235f1 (diff)
downloadydb-6b3e7777077b0112e088056abc7093db18d7bec0.tar.gz
Introduced TableSource wrapper and Blocks/Peephole mode for minirun tests
init commit_hash:22d9a4470f726b8efcd86aaf043bfa5552c2b35e
Diffstat (limited to 'yql/essentials/tests/sql/minirun/part9/test.py')
-rw-r--r--yql/essentials/tests/sql/minirun/part9/test.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/yql/essentials/tests/sql/minirun/part9/test.py b/yql/essentials/tests/sql/minirun/part9/test.py
index 9c41b3dbc7..ab149d4b47 100644
--- a/yql/essentials/tests/sql/minirun/part9/test.py
+++ b/yql/essentials/tests/sql/minirun/part9/test.py
@@ -1,16 +1,14 @@
-import pytest
import yatest
-from pure import run_test, DATA_PATH
+from pure import run_test, DATA_PATH, mode_expander
from test_utils import pytest_generate_tests_for_part
from yql_utils import pytest_get_current_part
def pytest_generate_tests(metafunc):
current_part, part_count = pytest_get_current_part(yatest.common.source_path(__file__))
- return pytest_generate_tests_for_part(metafunc, current_part, part_count, data_path=DATA_PATH)
+ return pytest_generate_tests_for_part(metafunc, current_part, part_count, data_path=DATA_PATH, mode_expander=mode_expander)
-@pytest.mark.parametrize('what', ['Results', 'Debug', 'RunOnOpt', 'LLVM'])
-def test(suite, case, cfg, tmpdir, what, yql_http_file_server):
+def test(suite, case, cfg, what, tmpdir, yql_http_file_server):
return run_test(suite, case, cfg, tmpdir, what, yql_http_file_server)