aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrobot-piglet <robot-piglet@yandex-team.com>2023-11-23 19:02:06 +0300
committerrobot-piglet <robot-piglet@yandex-team.com>2023-11-23 19:35:48 +0300
commit26e2da9415127c22e30933e48a5769b0d5bb440c (patch)
tree29dd881d3f6fc02af8fa32779f4f0270a7cf020d
parent39b5747f8c9c99ab475c64922e33edd81450cf06 (diff)
downloadydb-26e2da9415127c22e30933e48a5769b0d5bb440c.tar.gz
Intermediate changes
-rw-r--r--yt/opensource_tests.inc19
-rw-r--r--yt/yt/client/hedging/unittests/ya.make2
-rw-r--r--yt/yt/client/table_client/unittests/ya.make2
-rw-r--r--yt/yt/client/unittests/ya.make2
-rw-r--r--yt/yt/core/actions/unittests/ya.make2
-rw-r--r--yt/yt/core/bus/unittests/ya.make2
-rw-r--r--yt/yt/core/compression/unittests/ya.make2
-rw-r--r--yt/yt/core/concurrency/unittests/ya.make2
-rw-r--r--yt/yt/core/crypto/unittests/ya.make2
-rw-r--r--yt/yt/core/http/unittests/ya.make2
-rw-r--r--yt/yt/core/json/unittests/ya.make2
-rw-r--r--yt/yt/core/logging/unittests/ya.make2
-rw-r--r--yt/yt/core/misc/unittests/ya.make2
-rw-r--r--yt/yt/core/net/unittests/ya.make2
-rw-r--r--yt/yt/core/profiling/unittests/ya.make2
-rw-r--r--yt/yt/core/rpc/unittests/allocation_tags/ya.make2
-rw-r--r--yt/yt/core/rpc/unittests/main/ya.make2
-rw-r--r--yt/yt/core/rpc/unittests/shutdown/ya.make2
-rw-r--r--yt/yt/core/tracing/unittests/ya.make2
-rw-r--r--yt/yt/core/ypath/unittests/ya.make2
-rw-r--r--yt/yt/core/yson/unittests/ya.make2
-rw-r--r--yt/yt/core/ytree/unittests/ya.make2
-rw-r--r--yt/yt/library/auth/unittests/ya.make2
-rw-r--r--yt/yt/library/backtrace_introspector/unittests/ya.make2
-rw-r--r--yt/yt/library/decimal/unittests/ya.make2
-rw-r--r--yt/yt/library/erasure/impl/unittests/ya.make2
-rw-r--r--yt/yt/library/numeric/serialize/unittests/ya.make2
-rw-r--r--yt/yt/library/numeric/unittests/ya.make2
-rw-r--r--yt/yt/library/process/unittests/ya.make2
-rw-r--r--yt/yt/library/profiling/integration/ya.make2
-rw-r--r--yt/yt/library/profiling/unittests/ya.make2
-rw-r--r--yt/yt/library/syncmap/unittests/ya.make2
-rw-r--r--yt/yt/library/tracing/unittests/ya.make2
-rw-r--r--yt/yt/library/tvm/service/unittests/ya.make2
-rw-r--r--yt/yt/library/undumpable/unittests/ya.make2
-rw-r--r--yt/yt/library/ytprof/integration/ya.make2
-rw-r--r--yt/yt/library/ytprof/unittests/ya.make2
37 files changed, 36 insertions, 55 deletions
diff --git a/yt/opensource_tests.inc b/yt/opensource_tests.inc
deleted file mode 100644
index c1bc1304e1..0000000000
--- a/yt/opensource_tests.inc
+++ /dev/null
@@ -1,19 +0,0 @@
-IF (OPENSOURCE)
- IF (MODULE_KIND == PROTO_LIBRARY)
- EXCLUDE_TAGS(PY_PROTO)
- ENDIF()
-
- IF (MODULE_KIND == PY23_LIBRARY)
- EXCLUDE_TAGS(PY2)
- ENDIF()
-
- IF (MODULE_KIND == PY23_TEST)
- EXCLUDE_TAGS(PY2)
- ENDIF()
-
- LICENSE_RESTRICTION_EXCEPTIONS(
- # Java tests
- contrib/java/junit/junit/4.13
- contrib/java/javax/persistence/persistence-api/1.0
- )
-ENDIF()
diff --git a/yt/yt/client/hedging/unittests/ya.make b/yt/yt/client/hedging/unittests/ya.make
index 6fb24ba2b4..5e85f5f24e 100644
--- a/yt/yt/client/hedging/unittests/ya.make
+++ b/yt/yt/client/hedging/unittests/ya.make
@@ -12,7 +12,7 @@ SRCS(
GLOBAL hook.cpp
)
-INCLUDE(${ARCADIA_ROOT}/yt/opensource_tests.inc)
+INCLUDE(${ARCADIA_ROOT}/yt/opensource.inc)
PEERDIR(
library/cpp/iterator
diff --git a/yt/yt/client/table_client/unittests/ya.make b/yt/yt/client/table_client/unittests/ya.make
index d0a82ab469..911aa88179 100644
--- a/yt/yt/client/table_client/unittests/ya.make
+++ b/yt/yt/client/table_client/unittests/ya.make
@@ -10,7 +10,7 @@ SRCS(
serialization_ut.cpp
)
-INCLUDE(${ARCADIA_ROOT}/yt/opensource_tests.inc)
+INCLUDE(${ARCADIA_ROOT}/yt/opensource.inc)
PEERDIR(
yt/yt/client
diff --git a/yt/yt/client/unittests/ya.make b/yt/yt/client/unittests/ya.make
index 747cfe2aa8..bf1a29f069 100644
--- a/yt/yt/client/unittests/ya.make
+++ b/yt/yt/client/unittests/ya.make
@@ -39,7 +39,7 @@ SRCS(
zookeeper_protocol_ut.cpp
)
-INCLUDE(${ARCADIA_ROOT}/yt/opensource_tests.inc)
+INCLUDE(${ARCADIA_ROOT}/yt/opensource.inc)
PEERDIR(
yt/yt/build
diff --git a/yt/yt/core/actions/unittests/ya.make b/yt/yt/core/actions/unittests/ya.make
index d98bf65c70..8a91ecd927 100644
--- a/yt/yt/core/actions/unittests/ya.make
+++ b/yt/yt/core/actions/unittests/ya.make
@@ -16,7 +16,7 @@ SRCS(
new_with_offloaded_dtor_ut.cpp
)
-INCLUDE(${ARCADIA_ROOT}/yt/opensource_tests.inc)
+INCLUDE(${ARCADIA_ROOT}/yt/opensource.inc)
PEERDIR(
yt/yt/core
diff --git a/yt/yt/core/bus/unittests/ya.make b/yt/yt/core/bus/unittests/ya.make
index 10dbe3d2aa..7f56a36940 100644
--- a/yt/yt/core/bus/unittests/ya.make
+++ b/yt/yt/core/bus/unittests/ya.make
@@ -13,7 +13,7 @@ SRCS(
ssl_ut.cpp
)
-INCLUDE(${ARCADIA_ROOT}/yt/opensource_tests.inc)
+INCLUDE(${ARCADIA_ROOT}/yt/opensource.inc)
PEERDIR(
yt/yt/core
diff --git a/yt/yt/core/compression/unittests/ya.make b/yt/yt/core/compression/unittests/ya.make
index 04b0750ac9..079474b5ef 100644
--- a/yt/yt/core/compression/unittests/ya.make
+++ b/yt/yt/core/compression/unittests/ya.make
@@ -13,7 +13,7 @@ SRCS(
stream_ut.cpp
)
-INCLUDE(${ARCADIA_ROOT}/yt/opensource_tests.inc)
+INCLUDE(${ARCADIA_ROOT}/yt/opensource.inc)
PEERDIR(
yt/yt/core
diff --git a/yt/yt/core/concurrency/unittests/ya.make b/yt/yt/core/concurrency/unittests/ya.make
index af74851a82..d1d86adfe5 100644
--- a/yt/yt/core/concurrency/unittests/ya.make
+++ b/yt/yt/core/concurrency/unittests/ya.make
@@ -38,7 +38,7 @@ SRCS(
two_level_fair_share_thread_pool_ut.cpp
)
-INCLUDE(${ARCADIA_ROOT}/yt/opensource_tests.inc)
+INCLUDE(${ARCADIA_ROOT}/yt/opensource.inc)
PEERDIR(
yt/yt/core
diff --git a/yt/yt/core/crypto/unittests/ya.make b/yt/yt/core/crypto/unittests/ya.make
index 893d2af17a..460de9e957 100644
--- a/yt/yt/core/crypto/unittests/ya.make
+++ b/yt/yt/core/crypto/unittests/ya.make
@@ -13,7 +13,7 @@ SRCS(
tls_ut.cpp
)
-INCLUDE(${ARCADIA_ROOT}/yt/opensource_tests.inc)
+INCLUDE(${ARCADIA_ROOT}/yt/opensource.inc)
PEERDIR(
yt/yt/core
diff --git a/yt/yt/core/http/unittests/ya.make b/yt/yt/core/http/unittests/ya.make
index 3a810e504b..c3724d1234 100644
--- a/yt/yt/core/http/unittests/ya.make
+++ b/yt/yt/core/http/unittests/ya.make
@@ -12,7 +12,7 @@ SRCS(
http_ut.cpp
)
-INCLUDE(${ARCADIA_ROOT}/yt/opensource_tests.inc)
+INCLUDE(${ARCADIA_ROOT}/yt/opensource.inc)
PEERDIR(
library/cpp/testing/common
diff --git a/yt/yt/core/json/unittests/ya.make b/yt/yt/core/json/unittests/ya.make
index 5b174a52c9..8dc2d207d1 100644
--- a/yt/yt/core/json/unittests/ya.make
+++ b/yt/yt/core/json/unittests/ya.make
@@ -13,7 +13,7 @@ SRCS(
writer_ut.cpp
)
-INCLUDE(${ARCADIA_ROOT}/yt/opensource_tests.inc)
+INCLUDE(${ARCADIA_ROOT}/yt/opensource.inc)
PEERDIR(
yt/yt/core
diff --git a/yt/yt/core/logging/unittests/ya.make b/yt/yt/core/logging/unittests/ya.make
index aa7c15d923..571cfee61e 100644
--- a/yt/yt/core/logging/unittests/ya.make
+++ b/yt/yt/core/logging/unittests/ya.make
@@ -12,7 +12,7 @@ SRCS(
logging_ut.cpp
)
-INCLUDE(${ARCADIA_ROOT}/yt/opensource_tests.inc)
+INCLUDE(${ARCADIA_ROOT}/yt/opensource.inc)
PEERDIR(
yt/yt/core
diff --git a/yt/yt/core/misc/unittests/ya.make b/yt/yt/core/misc/unittests/ya.make
index fae325df75..bafe3c49d3 100644
--- a/yt/yt/core/misc/unittests/ya.make
+++ b/yt/yt/core/misc/unittests/ya.make
@@ -77,7 +77,7 @@ SRCS(
proto/ref_counted_tracker_ut.proto
)
-INCLUDE(${ARCADIA_ROOT}/yt/opensource_tests.inc)
+INCLUDE(${ARCADIA_ROOT}/yt/opensource.inc)
PEERDIR(
yt/yt/core
diff --git a/yt/yt/core/net/unittests/ya.make b/yt/yt/core/net/unittests/ya.make
index 2fdcc268b5..d1bf832968 100644
--- a/yt/yt/core/net/unittests/ya.make
+++ b/yt/yt/core/net/unittests/ya.make
@@ -14,7 +14,7 @@ SRCS(
network_address_ut.cpp
)
-INCLUDE(${ARCADIA_ROOT}/yt/opensource_tests.inc)
+INCLUDE(${ARCADIA_ROOT}/yt/opensource.inc)
PEERDIR(
yt/yt/core
diff --git a/yt/yt/core/profiling/unittests/ya.make b/yt/yt/core/profiling/unittests/ya.make
index bbe2bd3ce5..b31b812b83 100644
--- a/yt/yt/core/profiling/unittests/ya.make
+++ b/yt/yt/core/profiling/unittests/ya.make
@@ -13,7 +13,7 @@ SRCS(
timing_ut.cpp
)
-INCLUDE(${ARCADIA_ROOT}/yt/opensource_tests.inc)
+INCLUDE(${ARCADIA_ROOT}/yt/opensource.inc)
PEERDIR(
yt/yt/core
diff --git a/yt/yt/core/rpc/unittests/allocation_tags/ya.make b/yt/yt/core/rpc/unittests/allocation_tags/ya.make
index 722b2a9872..f3f22655bc 100644
--- a/yt/yt/core/rpc/unittests/allocation_tags/ya.make
+++ b/yt/yt/core/rpc/unittests/allocation_tags/ya.make
@@ -12,7 +12,7 @@ SRCS(
yt/yt/core/rpc/unittests/rpc_allocation_tags_ut.cpp
)
-INCLUDE(${ARCADIA_ROOT}/yt/opensource_tests.inc)
+INCLUDE(${ARCADIA_ROOT}/yt/opensource.inc)
PEERDIR(
yt/yt/library/ytprof
diff --git a/yt/yt/core/rpc/unittests/main/ya.make b/yt/yt/core/rpc/unittests/main/ya.make
index 803eff2731..773edcce96 100644
--- a/yt/yt/core/rpc/unittests/main/ya.make
+++ b/yt/yt/core/rpc/unittests/main/ya.make
@@ -15,7 +15,7 @@ SRCS(
yt/yt/core/rpc/unittests/viable_peer_registry_ut.cpp
)
-INCLUDE(${ARCADIA_ROOT}/yt/opensource_tests.inc)
+INCLUDE(${ARCADIA_ROOT}/yt/opensource.inc)
PEERDIR(
yt/yt/core
diff --git a/yt/yt/core/rpc/unittests/shutdown/ya.make b/yt/yt/core/rpc/unittests/shutdown/ya.make
index 6766dbc010..a55c4d4fc0 100644
--- a/yt/yt/core/rpc/unittests/shutdown/ya.make
+++ b/yt/yt/core/rpc/unittests/shutdown/ya.make
@@ -12,7 +12,7 @@ SRCS(
yt/yt/core/rpc/unittests/rpc_shutdown_ut.cpp
)
-INCLUDE(${ARCADIA_ROOT}/yt/opensource_tests.inc)
+INCLUDE(${ARCADIA_ROOT}/yt/opensource.inc)
PEERDIR(
yt/yt/core
diff --git a/yt/yt/core/tracing/unittests/ya.make b/yt/yt/core/tracing/unittests/ya.make
index 1b64215672..0f66a155cb 100644
--- a/yt/yt/core/tracing/unittests/ya.make
+++ b/yt/yt/core/tracing/unittests/ya.make
@@ -6,7 +6,7 @@ SRCS(
allocation_tags_ut.cpp
)
-INCLUDE(${ARCADIA_ROOT}/yt/opensource_tests.inc)
+INCLUDE(${ARCADIA_ROOT}/yt/opensource.inc)
PEERDIR(
yt/yt/core
diff --git a/yt/yt/core/ypath/unittests/ya.make b/yt/yt/core/ypath/unittests/ya.make
index 4a31a9b98e..fa6d821da4 100644
--- a/yt/yt/core/ypath/unittests/ya.make
+++ b/yt/yt/core/ypath/unittests/ya.make
@@ -12,7 +12,7 @@ SRCS(
tokenizer_ut.cpp
)
-INCLUDE(${ARCADIA_ROOT}/yt/opensource_tests.inc)
+INCLUDE(${ARCADIA_ROOT}/yt/opensource.inc)
PEERDIR(
yt/yt/core
diff --git a/yt/yt/core/yson/unittests/ya.make b/yt/yt/core/yson/unittests/ya.make
index 1d757f1a9a..08919c2249 100644
--- a/yt/yt/core/yson/unittests/ya.make
+++ b/yt/yt/core/yson/unittests/ya.make
@@ -27,7 +27,7 @@ SRCS(
proto/protobuf_yson_casing_ext_ut.proto
)
-INCLUDE(${ARCADIA_ROOT}/yt/opensource_tests.inc)
+INCLUDE(${ARCADIA_ROOT}/yt/opensource.inc)
PEERDIR(
yt/yt/core
diff --git a/yt/yt/core/ytree/unittests/ya.make b/yt/yt/core/ytree/unittests/ya.make
index 54684cbe9c..e020df74b6 100644
--- a/yt/yt/core/ytree/unittests/ya.make
+++ b/yt/yt/core/ytree/unittests/ya.make
@@ -26,7 +26,7 @@ SRCS(
GENERATE_ENUM_SERIALIZATION(serialize_ut.h)
-INCLUDE(${ARCADIA_ROOT}/yt/opensource_tests.inc)
+INCLUDE(${ARCADIA_ROOT}/yt/opensource.inc)
PEERDIR(
yt/yt/core
diff --git a/yt/yt/library/auth/unittests/ya.make b/yt/yt/library/auth/unittests/ya.make
index 36888b9695..c45504d10a 100644
--- a/yt/yt/library/auth/unittests/ya.make
+++ b/yt/yt/library/auth/unittests/ya.make
@@ -8,7 +8,7 @@ SRCS(
auth_ut.cpp
)
-INCLUDE(${ARCADIA_ROOT}/yt/opensource_tests.inc)
+INCLUDE(${ARCADIA_ROOT}/yt/opensource.inc)
PEERDIR(
yt/yt/build
diff --git a/yt/yt/library/backtrace_introspector/unittests/ya.make b/yt/yt/library/backtrace_introspector/unittests/ya.make
index 953dc020a8..393215d01e 100644
--- a/yt/yt/library/backtrace_introspector/unittests/ya.make
+++ b/yt/yt/library/backtrace_introspector/unittests/ya.make
@@ -4,7 +4,7 @@ SRCS(
introspect_ut.cpp
)
-INCLUDE(${ARCADIA_ROOT}/yt/opensource_tests.inc)
+INCLUDE(${ARCADIA_ROOT}/yt/opensource.inc)
PEERDIR(
yt/yt/library/backtrace_introspector
diff --git a/yt/yt/library/decimal/unittests/ya.make b/yt/yt/library/decimal/unittests/ya.make
index 0686252855..76341ee7b2 100644
--- a/yt/yt/library/decimal/unittests/ya.make
+++ b/yt/yt/library/decimal/unittests/ya.make
@@ -8,7 +8,7 @@ SRCS(
decimal_ut.cpp
)
-INCLUDE(${ARCADIA_ROOT}/yt/opensource_tests.inc)
+INCLUDE(${ARCADIA_ROOT}/yt/opensource.inc)
PEERDIR(
yt/yt/core/test_framework
diff --git a/yt/yt/library/erasure/impl/unittests/ya.make b/yt/yt/library/erasure/impl/unittests/ya.make
index 2b2eaf6dd0..15b3f6fb8d 100644
--- a/yt/yt/library/erasure/impl/unittests/ya.make
+++ b/yt/yt/library/erasure/impl/unittests/ya.make
@@ -8,7 +8,7 @@ SRCS(
erasure_stability_ut.cpp
)
-INCLUDE(${ARCADIA_ROOT}/yt/opensource_tests.inc)
+INCLUDE(${ARCADIA_ROOT}/yt/opensource.inc)
PEERDIR(
yt/yt/build
diff --git a/yt/yt/library/numeric/serialize/unittests/ya.make b/yt/yt/library/numeric/serialize/unittests/ya.make
index efcc03c3d2..c5f3e22ddf 100644
--- a/yt/yt/library/numeric/serialize/unittests/ya.make
+++ b/yt/yt/library/numeric/serialize/unittests/ya.make
@@ -10,7 +10,7 @@ ADDINCL(
yt/yt/library/numeric/serialize
)
-INCLUDE(${ARCADIA_ROOT}/yt/opensource_tests.inc)
+INCLUDE(${ARCADIA_ROOT}/yt/opensource.inc)
PEERDIR(
yt/yt/library/numeric/serialize
diff --git a/yt/yt/library/numeric/unittests/ya.make b/yt/yt/library/numeric/unittests/ya.make
index 567c274e3a..435dc28d76 100644
--- a/yt/yt/library/numeric/unittests/ya.make
+++ b/yt/yt/library/numeric/unittests/ya.make
@@ -13,7 +13,7 @@ ADDINCL(
yt/yt/library/numeric
)
-INCLUDE(${ARCADIA_ROOT}/yt/opensource_tests.inc)
+INCLUDE(${ARCADIA_ROOT}/yt/opensource.inc)
PEERDIR(
yt/yt/library/numeric
diff --git a/yt/yt/library/process/unittests/ya.make b/yt/yt/library/process/unittests/ya.make
index 6e476c5702..7c5d0cb48f 100644
--- a/yt/yt/library/process/unittests/ya.make
+++ b/yt/yt/library/process/unittests/ya.make
@@ -10,7 +10,7 @@ SRCS(
subprocess_ut.cpp
)
-INCLUDE(${ARCADIA_ROOT}/yt/opensource_tests.inc)
+INCLUDE(${ARCADIA_ROOT}/yt/opensource.inc)
PEERDIR(
yt/yt/build
diff --git a/yt/yt/library/profiling/integration/ya.make b/yt/yt/library/profiling/integration/ya.make
index f7e07eeab6..4230c82640 100644
--- a/yt/yt/library/profiling/integration/ya.make
+++ b/yt/yt/library/profiling/integration/ya.make
@@ -1,6 +1,6 @@
PY3TEST()
-INCLUDE(${ARCADIA_ROOT}/yt/opensource_tests.inc)
+INCLUDE(${ARCADIA_ROOT}/yt/opensource.inc)
PEERDIR(
contrib/python/requests
diff --git a/yt/yt/library/profiling/unittests/ya.make b/yt/yt/library/profiling/unittests/ya.make
index 9cdc6e37d6..073921728b 100644
--- a/yt/yt/library/profiling/unittests/ya.make
+++ b/yt/yt/library/profiling/unittests/ya.make
@@ -17,7 +17,7 @@ SRCS(
perf_counter_ut.cpp
)
-INCLUDE(${ARCADIA_ROOT}/yt/opensource_tests.inc)
+INCLUDE(${ARCADIA_ROOT}/yt/opensource.inc)
PEERDIR(
yt/yt/core/test_framework
diff --git a/yt/yt/library/syncmap/unittests/ya.make b/yt/yt/library/syncmap/unittests/ya.make
index 97a41e12d5..f53e9e6ec0 100644
--- a/yt/yt/library/syncmap/unittests/ya.make
+++ b/yt/yt/library/syncmap/unittests/ya.make
@@ -4,7 +4,7 @@ INCLUDE(${ARCADIA_ROOT}/yt/ya_cpp.make.inc)
SRCS(map_ut.cpp)
-INCLUDE(${ARCADIA_ROOT}/yt/opensource_tests.inc)
+INCLUDE(${ARCADIA_ROOT}/yt/opensource.inc)
PEERDIR(
yt/yt/core
diff --git a/yt/yt/library/tracing/unittests/ya.make b/yt/yt/library/tracing/unittests/ya.make
index ab4acdbfbb..cf092e8513 100644
--- a/yt/yt/library/tracing/unittests/ya.make
+++ b/yt/yt/library/tracing/unittests/ya.make
@@ -6,7 +6,7 @@ SRCS(
sampler_ut.cpp
)
-INCLUDE(${ARCADIA_ROOT}/yt/opensource_tests.inc)
+INCLUDE(${ARCADIA_ROOT}/yt/opensource.inc)
PEERDIR(yt/yt/library/tracing/jaeger)
diff --git a/yt/yt/library/tvm/service/unittests/ya.make b/yt/yt/library/tvm/service/unittests/ya.make
index 84baf8c216..28629e6d82 100644
--- a/yt/yt/library/tvm/service/unittests/ya.make
+++ b/yt/yt/library/tvm/service/unittests/ya.make
@@ -2,7 +2,7 @@ GTEST(unittester-library-auth_tvm)
ALLOCATOR(YT)
-INCLUDE(${ARCADIA_ROOT}/yt/opensource_tests.inc)
+INCLUDE(${ARCADIA_ROOT}/yt/opensource.inc)
PEERDIR(
yt/yt/build
diff --git a/yt/yt/library/undumpable/unittests/ya.make b/yt/yt/library/undumpable/unittests/ya.make
index ef64d1488d..534147234b 100644
--- a/yt/yt/library/undumpable/unittests/ya.make
+++ b/yt/yt/library/undumpable/unittests/ya.make
@@ -10,7 +10,7 @@ SRCS(
undumpable_ut.cpp
)
-INCLUDE(${ARCADIA_ROOT}/yt/opensource_tests.inc)
+INCLUDE(${ARCADIA_ROOT}/yt/opensource.inc)
PEERDIR(
yt/yt/library/undumpable
diff --git a/yt/yt/library/ytprof/integration/ya.make b/yt/yt/library/ytprof/integration/ya.make
index 889c25c0e1..7ba00d743c 100644
--- a/yt/yt/library/ytprof/integration/ya.make
+++ b/yt/yt/library/ytprof/integration/ya.make
@@ -2,7 +2,7 @@ PY3TEST()
SIZE(MEDIUM)
-INCLUDE(${ARCADIA_ROOT}/yt/opensource_tests.inc)
+INCLUDE(${ARCADIA_ROOT}/yt/opensource.inc)
PEERDIR(
contrib/python/requests
diff --git a/yt/yt/library/ytprof/unittests/ya.make b/yt/yt/library/ytprof/unittests/ya.make
index 8c8bce98f5..87c9389f1b 100644
--- a/yt/yt/library/ytprof/unittests/ya.make
+++ b/yt/yt/library/ytprof/unittests/ya.make
@@ -10,7 +10,7 @@ SRCS(
queue_ut.cpp
)
-INCLUDE(${ARCADIA_ROOT}/yt/opensource_tests.inc)
+INCLUDE(${ARCADIA_ROOT}/yt/opensource.inc)
PEERDIR(
yt/yt/library/ytprof