summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorvvvv <[email protected]>2023-09-07 11:39:16 +0300
committervvvv <[email protected]>2023-09-07 12:44:22 +0300
commite6919ad12acb9ff7cc66a1e34156038031168d1f (patch)
treeac94ad90ac54858dae67844346c7849d62a1411c
parenta8fa678ae08215d0d160cbcbcb8ef1ff66b0dfb5 (diff)
add contrib to all udfs
-rw-r--r--ydb/library/yql/tests/common/test_framework/yql_utils.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/ydb/library/yql/tests/common/test_framework/yql_utils.py b/ydb/library/yql/tests/common/test_framework/yql_utils.py
index 7b6718d3f59..0b80fcf503c 100644
--- a/ydb/library/yql/tests/common/test_framework/yql_utils.py
+++ b/ydb/library/yql/tests/common/test_framework/yql_utils.py
@@ -629,6 +629,7 @@ def yson_to_csv(yson_content, columns=None, with_header=True, strict=False):
def get_udfs_path(extra_paths=None):
udfs_build_path = yatest.common.build_path('yql/udfs')
ydb_udfs_build_path = yatest.common.build_path('ydb/library/yql/udfs')
+ contrib_ydb_udfs_build_path = yatest.common.build_path('contrib/ydb/library/yql/udfs')
rthub_udfs_build_path = yatest.common.build_path('robot/rthub/yql/udfs')
kwyt_udfs_build_path = yatest.common.build_path('robot/kwyt/yql/udfs')
@@ -646,7 +647,7 @@ def get_udfs_path(extra_paths=None):
if not os.path.isdir(merged_udfs_path):
os.mkdir(merged_udfs_path)
- udfs_paths = [udfs_project_path, udfs_bin_path, udfs_build_path, ydb_udfs_build_path, rthub_udfs_build_path, kwyt_udfs_build_path]
+ udfs_paths = [udfs_project_path, udfs_bin_path, udfs_build_path, ydb_udfs_build_path, contrib_ydb_udfs_build_path, rthub_udfs_build_path, kwyt_udfs_build_path]
if extra_paths is not None:
udfs_paths += extra_paths