diff options
Diffstat (limited to 'library/python/fs')
| -rw-r--r-- | library/python/fs/test/ya.make | 12 | ||||
| -rw-r--r-- | library/python/fs/ya.make | 21 |
2 files changed, 33 insertions, 0 deletions
diff --git a/library/python/fs/test/ya.make b/library/python/fs/test/ya.make new file mode 100644 index 00000000000..e5e1b738b64 --- /dev/null +++ b/library/python/fs/test/ya.make @@ -0,0 +1,12 @@ +PY23_TEST() + +TEST_SRCS( + test_fs.py +) + +PEERDIR( + library/python/fs + library/python/tmp +) + +END() diff --git a/library/python/fs/ya.make b/library/python/fs/ya.make new file mode 100644 index 00000000000..836f49b6d83 --- /dev/null +++ b/library/python/fs/ya.make @@ -0,0 +1,21 @@ +PY23_LIBRARY() + +PY_SRCS( + __init__.py +) + +IF (OS_DARWIN) + PY_SRCS( + clonefile.pyx + ) +ENDIF() + +PEERDIR( + library/python/func + library/python/strings + library/python/windows +) + +END() + +RECURSE_FOR_TESTS(test) |
