aboutsummaryrefslogtreecommitdiffstats
path: root/devtools
diff options
context:
space:
mode:
authorAlexSm <alex@ydb.tech>2024-01-10 16:33:04 +0100
committerGitHub <noreply@github.com>2024-01-10 16:33:04 +0100
commitd0ffb6b83b2c98376250dd11c037e488bdbcdf70 (patch)
treeda2970dc6fc506253ea2b3e8cd547a539561d1bb /devtools
parent294aa9e1504a6e7f4587af2d18d323ee740f4bd5 (diff)
downloadydb-d0ffb6b83b2c98376250dd11c037e488bdbcdf70.tar.gz
Revert "Remove devtools folder (#895)" (#922)
This reverts commit 192598f1bfc2c72a92fb55d5722ab56c4e69585c.
Diffstat (limited to 'devtools')
-rw-r--r--devtools/ya/test/const/__init__.py1
-rw-r--r--devtools/ya/test/const/ya.make14
2 files changed, 15 insertions, 0 deletions
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()