diff options
| author | alexv-smirnov <[email protected]> | 2023-06-13 11:05:01 +0300 | 
|---|---|---|
| committer | alexv-smirnov <[email protected]> | 2023-06-13 11:05:01 +0300 | 
| commit | bf0f13dd39ee3e65092ba3572bb5b1fcd125dcd0 (patch) | |
| tree | 1d1df72c0541a59a81439842f46d95396d3e7189 /library/python/resource | |
| parent | 8bfdfa9a9bd19bddbc58d888e180fbd1218681be (diff) | |
add ymake export to ydb
Diffstat (limited to 'library/python/resource')
| -rw-r--r-- | library/python/resource/ut/lib/ya.make | 15 | ||||
| -rw-r--r-- | library/python/resource/ut/py2/ya.make | 7 | ||||
| -rw-r--r-- | library/python/resource/ut/py3/ya.make | 7 | ||||
| -rw-r--r-- | library/python/resource/ut/ya.make | 4 | ||||
| -rw-r--r-- | library/python/resource/ya.make | 11 | 
5 files changed, 44 insertions, 0 deletions
diff --git a/library/python/resource/ut/lib/ya.make b/library/python/resource/ut/lib/ya.make new file mode 100644 index 00000000000..f5e28cad29f --- /dev/null +++ b/library/python/resource/ut/lib/ya.make @@ -0,0 +1,15 @@ +PY23_LIBRARY() + +TEST_SRCS(test_simple.py) + +PEERDIR( +    library/python/resource +) + +RESOURCE( +    qw.txt /qw.txt +    qw.txt /prefix/1.txt +    qw.txt /prefix/2.txt +) + +END() diff --git a/library/python/resource/ut/py2/ya.make b/library/python/resource/ut/py2/ya.make new file mode 100644 index 00000000000..073e4a68ac6 --- /dev/null +++ b/library/python/resource/ut/py2/ya.make @@ -0,0 +1,7 @@ +PY2TEST() + +PEERDIR( +    library/python/resource/ut/lib +) + +END() diff --git a/library/python/resource/ut/py3/ya.make b/library/python/resource/ut/py3/ya.make new file mode 100644 index 00000000000..65256285923 --- /dev/null +++ b/library/python/resource/ut/py3/ya.make @@ -0,0 +1,7 @@ +PY3TEST() + +PEERDIR( +    library/python/resource/ut/lib +) + +END() diff --git a/library/python/resource/ut/ya.make b/library/python/resource/ut/ya.make new file mode 100644 index 00000000000..4cedc9fb3e4 --- /dev/null +++ b/library/python/resource/ut/ya.make @@ -0,0 +1,4 @@ +RECURSE( +    py2 +    py3 +) diff --git a/library/python/resource/ya.make b/library/python/resource/ya.make new file mode 100644 index 00000000000..2642f0b42b6 --- /dev/null +++ b/library/python/resource/ya.make @@ -0,0 +1,11 @@ +PY23_LIBRARY() + +PEERDIR( +    contrib/python/six +) + +PY_SRCS(__init__.py) + +END() + +RECURSE_FOR_TESTS(ut)  | 
