ya.make 432 B

1234567891011121314151617181920212223242526272829303132
  1. PY23_LIBRARY()
  2. PY_SRCS(
  3. ya.py
  4. collection.py
  5. conftests.py
  6. fixtures.py
  7. metrics.py
  8. )
  9. PEERDIR(
  10. library/python/filelock
  11. library/python/find_root
  12. library/python/testing/filter
  13. library/python/testing/yatest_common
  14. )
  15. IF (PYTHON2)
  16. PY_SRCS(
  17. fakeid_py2.py
  18. )
  19. PEERDIR(
  20. contrib/deprecated/python/faulthandler
  21. )
  22. ELSE()
  23. PY_SRCS(
  24. fakeid_py3.py
  25. )
  26. ENDIF()
  27. END()