diff --git a/.github/check_dirs.sh b/.github/check_dirs.sh index a72db06a7a83..6ab47851cb00 100755 --- a/.github/check_dirs.sh +++ b/.github/check_dirs.sh @@ -17,6 +17,7 @@ declare -A top_dirs=( [scripts/]=1, [yt/]=1, [vendor/]=1, + [devtools/]=1, ) cd $GIT_URL diff --git a/devtools/ya/test/const/__init__.py b/devtools/ya/test/const/__init__.py new file mode 100644 index 000000000000..13f770a01451 --- /dev/null +++ b/devtools/ya/test/const/__init__.py @@ -0,0 +1 @@ +from build.plugins.lib.test_const import * # noqa: F401, F403 diff --git a/devtools/ya/test/const/ya.make b/devtools/ya/test/const/ya.make new file mode 100644 index 000000000000..e495887db7cb --- /dev/null +++ b/devtools/ya/test/const/ya.make @@ -0,0 +1,14 @@ +PY23_LIBRARY() + +PEERDIR( + build/plugins/lib/test_const +) + +STYLE_PYTHON() + +PY_SRCS( + NAMESPACE test.const + __init__.py +) + +END()