diff options
author | robot-piglet <robot-piglet@yandex-team.com> | 2025-01-20 19:52:03 +0300 |
---|---|---|
committer | robot-piglet <robot-piglet@yandex-team.com> | 2025-01-20 20:24:50 +0300 |
commit | 0b6cd06b8d859e8ed867b5574cb15b7353b3bcd2 (patch) | |
tree | d93e83ae7c137867d1fd821e493d1ea200f9499a /yql/essentials/tests/common/test_framework/test_file_common.py | |
parent | 2c0b6f62749a11e0adb8d1318d2fa79122f29af4 (diff) | |
download | ydb-0b6cd06b8d859e8ed867b5574cb15b7353b3bcd2.tar.gz |
Intermediate changes
commit_hash:302db606da88098276d69272eb2346a8ad040a89
Diffstat (limited to 'yql/essentials/tests/common/test_framework/test_file_common.py')
-rw-r--r-- | yql/essentials/tests/common/test_framework/test_file_common.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/yql/essentials/tests/common/test_framework/test_file_common.py b/yql/essentials/tests/common/test_framework/test_file_common.py index 3bd6b7af1d..69d5af2c7a 100644 --- a/yql/essentials/tests/common/test_framework/test_file_common.py +++ b/yql/essentials/tests/common/test_framework/test_file_common.py @@ -12,8 +12,6 @@ from yql_utils import execute, get_supported_providers, get_tables, get_files, g from yqlrun import YQLRun from test_utils import get_parameters_json, replace_vars -# FIXME dq usage -from test_utils import DATA_PATH def get_gateways_config(http_files, yql_http_file_server, force_blocks=False, is_hybrid=False, allow_llvm=True): @@ -56,10 +54,7 @@ def check_provider(provider, config): pytest.skip('%s provider is not supported here' % provider) -# FIXME make data_path required (dq usage) def get_sql_query(provider, suite, case, config, data_path=None, template='.sql'): - if data_path is None: - data_path = DATA_PATH pragmas = get_pragmas(config) if get_param('TARGET_PLATFORM'): @@ -93,9 +88,6 @@ def run_file_no_cache(provider, suite, case, cfg, config, yql_http_file_server, yqlrun_binary=None, extra_args=[], force_blocks=False, allow_llvm=True, data_path=None, run_sql=True): check_provider(provider, config) - # FIXME dq usage - if data_path is None: - data_path = DATA_PATH sql_query = get_sql_query(provider, suite, case, config, data_path, template='.sql' if run_sql else '.yqls') sql_query = replace_vars(sql_query, "yqlrun_var") |