Skip to content

Commit d3dd3a7

Browse files
authored
Remove fq/generic from asan precommit checks (too long, and not profitable) (#8026)
1 parent 85caeb7 commit d3dd3a7

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

ydb/tests/fq/generic/ya.make

+9-4
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,15 @@ ENDIF()
3333
INCLUDE(${ARCADIA_ROOT}/library/recipes/docker_compose/recipe.inc)
3434

3535
IF (OPENSOURCE)
36-
# Including of docker_compose/recipe.inc automatically converts these tests into LARGE,
37-
# which makes it impossible to run them during precommit checks on Github CI.
38-
# Next several lines forces these tests to be MEDIUM. To see discussion, visit YDBOPS-8928.
39-
SIZE(MEDIUM)
36+
IF (SANITIZER_TYPE)
37+
# Too huge for precommit check with sanitizers
38+
SIZE(LARGE)
39+
ELSE()
40+
# Including of docker_compose/recipe.inc automatically converts these tests into LARGE,
41+
# which makes it impossible to run them during precommit checks on Github CI.
42+
# Next several lines forces these tests to be MEDIUM. To see discussion, visit YDBOPS-8928.
43+
SIZE(MEDIUM)
44+
ENDIF()
4045
SET(TEST_TAGS_VALUE)
4146
SET(TEST_REQUIREMENTS_VALUE)
4247
# This requirement forces tests to be launched consequently,

0 commit comments

Comments
 (0)