diff options
Diffstat (limited to 'library/python/runtime_py3/ya.make')
-rw-r--r-- | library/python/runtime_py3/ya.make | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/library/python/runtime_py3/ya.make b/library/python/runtime_py3/ya.make index 0ad7d3e13f..dc97c8e2e0 100644 --- a/library/python/runtime_py3/ya.make +++ b/library/python/runtime_py3/ya.make @@ -25,6 +25,12 @@ PY_SRCS( sitecustomize.pyx ) +IF (EXTERNAL_PY_FILES) + PEERDIR( + library/python/runtime_py3/enable_external_py_files + ) +ENDIF() + IF (CYTHON_COVERAGE) # Let covarage support add all needed files to resources ELSE() @@ -39,6 +45,10 @@ ENDIF() END() +RECURSE( + enable_external_py_files +) + RECURSE_FOR_TESTS( test ) |