ya.make 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. PY23_LIBRARY()
  2. LICENSE(BSD-3-Clause)
  3. OWNER(g:python-contrib)
  4. VERSION(1.9.0)
  5. PEERDIR (
  6. contrib/python/six
  7. )
  8. SRCDIR(
  9. contrib/python/PyHamcrest/src
  10. )
  11. PY_SRCS(
  12. TOP_LEVEL
  13. hamcrest/core/compat.py
  14. hamcrest/core/assert_that.py
  15. hamcrest/core/matcher.py
  16. hamcrest/core/base_matcher.py
  17. hamcrest/core/selfdescribingvalue.py
  18. hamcrest/core/string_description.py
  19. hamcrest/core/core/isnot.py
  20. hamcrest/core/core/allof.py
  21. hamcrest/core/core/issame.py
  22. hamcrest/core/core/anyof.py
  23. hamcrest/core/core/isanything.py
  24. hamcrest/core/core/is_.py
  25. hamcrest/core/core/described_as.py
  26. hamcrest/core/core/raises.py
  27. hamcrest/core/core/isequal.py
  28. hamcrest/core/core/isnone.py
  29. hamcrest/core/core/isinstanceof.py
  30. hamcrest/core/core/__init__.py
  31. hamcrest/core/description.py
  32. hamcrest/core/selfdescribing.py
  33. hamcrest/core/base_description.py
  34. hamcrest/core/helpers/hasmethod.py
  35. hamcrest/core/helpers/wrap_matcher.py
  36. hamcrest/core/helpers/__init__.py
  37. hamcrest/core/__init__.py
  38. hamcrest/library/integration/match_equality.py
  39. hamcrest/library/integration/__init__.py
  40. hamcrest/library/number/ordering_comparison.py
  41. hamcrest/library/number/iscloseto.py
  42. hamcrest/library/number/__init__.py
  43. hamcrest/library/text/substringmatcher.py
  44. hamcrest/library/text/stringcontainsinorder.py
  45. hamcrest/library/text/isequal_ignoring_case.py
  46. hamcrest/library/text/stringstartswith.py
  47. hamcrest/library/text/stringendswith.py
  48. hamcrest/library/text/isequal_ignoring_whitespace.py
  49. hamcrest/library/text/stringcontains.py
  50. hamcrest/library/text/stringmatches.py
  51. hamcrest/library/text/__init__.py
  52. hamcrest/library/object/hasstring.py
  53. hamcrest/library/object/hasproperty.py
  54. hamcrest/library/object/haslength.py
  55. hamcrest/library/object/__init__.py
  56. hamcrest/library/collection/isdict_containingkey.py
  57. hamcrest/library/collection/issequence_onlycontaining.py
  58. hamcrest/library/collection/issequence_containing.py
  59. hamcrest/library/collection/issequence_containinginorder.py
  60. hamcrest/library/collection/isdict_containing.py
  61. hamcrest/library/collection/issequence_containinginanyorder.py
  62. hamcrest/library/collection/isin.py
  63. hamcrest/library/collection/isdict_containingvalue.py
  64. hamcrest/library/collection/is_empty.py
  65. hamcrest/library/collection/isdict_containingentries.py
  66. hamcrest/library/collection/__init__.py
  67. hamcrest/library/__init__.py
  68. hamcrest/__init__.py
  69. )
  70. NO_LINT()
  71. END()
  72. RECURSE_FOR_TESTS(
  73. tests
  74. )