summaryrefslogtreecommitdiffstats
path: root/library/python/func
diff options
context:
space:
mode:
Diffstat (limited to 'library/python/func')
-rw-r--r--library/python/func/ut/ya.make9
-rw-r--r--library/python/func/ya.make9
2 files changed, 18 insertions, 0 deletions
diff --git a/library/python/func/ut/ya.make b/library/python/func/ut/ya.make
new file mode 100644
index 00000000000..4e8f326de7a
--- /dev/null
+++ b/library/python/func/ut/ya.make
@@ -0,0 +1,9 @@
+PY23_TEST()
+
+TEST_SRCS(test_func.py)
+
+PEERDIR(
+ library/python/func
+)
+
+END()
diff --git a/library/python/func/ya.make b/library/python/func/ya.make
new file mode 100644
index 00000000000..47ab634913c
--- /dev/null
+++ b/library/python/func/ya.make
@@ -0,0 +1,9 @@
+PY23_LIBRARY()
+
+PY_SRCS(__init__.py)
+
+END()
+
+RECURSE_FOR_TESTS(
+ ut
+)