1234567891011121314151617181920212223242526272829303132 |
- PY23_LIBRARY()
- PY_SRCS(
- ya.py
- collection.py
- conftests.py
- fixtures.py
- metrics.py
- )
- PEERDIR(
- library/python/filelock
- library/python/find_root
- library/python/testing/filter
- library/python/testing/yatest_common
- )
- IF (PYTHON2)
- PY_SRCS(
- fakeid_py2.py
- )
- PEERDIR(
- contrib/deprecated/python/faulthandler
- )
- ELSE()
- PY_SRCS(
- fakeid_py3.py
- )
- ENDIF()
- END()
|