From 993430a9fd14e74e1d5f13a63bf801e9ef742842 Mon Sep 17 00:00:00 2001 From: Vitaly Isaev Date: Tue, 9 Jan 2024 08:14:01 +0000 Subject: [PATCH 1/2] Hack ydb/library/yql/providers/generic/connector/tests to make them MEDIUM, not LARGE --- .../yql/providers/generic/connector/tests/ya.make | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/ydb/library/yql/providers/generic/connector/tests/ya.make b/ydb/library/yql/providers/generic/connector/tests/ya.make index 1ed277324a1b..0304c55676e9 100644 --- a/ydb/library/yql/providers/generic/connector/tests/ya.make +++ b/ydb/library/yql/providers/generic/connector/tests/ya.make @@ -3,8 +3,6 @@ PY3TEST() STYLE_PYTHON() NO_CHECK_IMPORTS() -SIZE(MEDIUM) - IF (AUTOCHECK) # Split tests to chunks only when they're running on different machines with distbuild, # otherwise this directive will slow down local test execution. @@ -27,6 +25,16 @@ ENDIF() INCLUDE(${ARCADIA_ROOT}/library/recipes/docker_compose/recipe.inc) +# Including of docker_compose/recipe.inc automatically converts these tests into LARGE, +# which makes it impossible to run them during precommit checks on Github CI. +# Next several lines forces these tests to be MEDIUM. To see discussion, visit YDBOPS-8928. +SIZE(MEDIUM) + +IF (OPENSOURCE) + SET(TEST_TAGS_VALUE) + SET(TEST_REQUIREMENTS_VALUE) +ENDIF() + TEST_SRCS( conftest.py clickhouse.py From 82b6677de4ac7a9bef12254ba7bde8a9910799a1 Mon Sep 17 00:00:00 2001 From: Vitaly Isaev Date: Tue, 9 Jan 2024 15:19:42 +0000 Subject: [PATCH 2/2] Hack ydb/library/yql/providers/generic/connector/tests to make them MEDIUM, not LARGE (for OSS ya only) --- ydb/library/yql/providers/generic/connector/tests/ya.make | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ydb/library/yql/providers/generic/connector/tests/ya.make b/ydb/library/yql/providers/generic/connector/tests/ya.make index 0304c55676e9..a4bb367b9559 100644 --- a/ydb/library/yql/providers/generic/connector/tests/ya.make +++ b/ydb/library/yql/providers/generic/connector/tests/ya.make @@ -28,9 +28,9 @@ INCLUDE(${ARCADIA_ROOT}/library/recipes/docker_compose/recipe.inc) # Including of docker_compose/recipe.inc automatically converts these tests into LARGE, # which makes it impossible to run them during precommit checks on Github CI. # Next several lines forces these tests to be MEDIUM. To see discussion, visit YDBOPS-8928. -SIZE(MEDIUM) - IF (OPENSOURCE) + SIZE(MEDIUM) + SET(TEST_TAGS_VALUE) SET(TEST_REQUIREMENTS_VALUE) ENDIF()