diff options
author | AlexSm <alex@ydb.tech> | 2024-01-10 16:33:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-10 16:33:04 +0100 |
commit | d0ffb6b83b2c98376250dd11c037e488bdbcdf70 (patch) | |
tree | da2970dc6fc506253ea2b3e8cd547a539561d1bb | |
parent | 294aa9e1504a6e7f4587af2d18d323ee740f4bd5 (diff) | |
download | ydb-d0ffb6b83b2c98376250dd11c037e488bdbcdf70.tar.gz |
Revert "Remove devtools folder (#895)" (#922)
This reverts commit 192598f1bfc2c72a92fb55d5722ab56c4e69585c.
-rwxr-xr-x | .github/check_dirs.sh | 1 | ||||
-rw-r--r-- | devtools/ya/test/const/__init__.py | 1 | ||||
-rw-r--r-- | devtools/ya/test/const/ya.make | 14 |
3 files changed, 16 insertions, 0 deletions
diff --git a/.github/check_dirs.sh b/.github/check_dirs.sh index a72db06a7a..6ab47851cb 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 0000000000..13f770a014 --- /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 0000000000..e495887db7 --- /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() |