METADATA 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. Metadata-Version: 2.0
  2. Name: hypothesis
  3. Version: 3.44.6
  4. Summary: A library for property based testing
  5. Home-page: https://github.com/HypothesisWorks/hypothesis-python
  6. Author: David R. MacIver
  7. Author-email: david@drmaciver.com
  8. License: MPL v2
  9. Description-Content-Type: UNKNOWN
  10. Platform: UNKNOWN
  11. Classifier: Development Status :: 5 - Production/Stable
  12. Classifier: Intended Audience :: Developers
  13. Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
  14. Classifier: Operating System :: Unix
  15. Classifier: Operating System :: POSIX
  16. Classifier: Operating System :: Microsoft :: Windows
  17. Classifier: Programming Language :: Python
  18. Classifier: Programming Language :: Python :: 2.7
  19. Classifier: Programming Language :: Python :: 3
  20. Classifier: Programming Language :: Python :: 3.4
  21. Classifier: Programming Language :: Python :: 3.5
  22. Classifier: Programming Language :: Python :: 3.6
  23. Classifier: Programming Language :: Python :: Implementation :: CPython
  24. Classifier: Programming Language :: Python :: Implementation :: PyPy
  25. Classifier: Topic :: Software Development :: Testing
  26. Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
  27. Requires-Dist: attrs
  28. Requires-Dist: coverage
  29. Requires-Dist: enum34
  30. Requires-Dist: enum34; python_version == '2.7'
  31. Provides-Extra: all
  32. Requires-Dist: Faker (>=0.7); extra == 'all'
  33. Requires-Dist: Faker (>=0.7); extra == 'all'
  34. Requires-Dist: django (<2,>=1.8); extra == 'all'
  35. Requires-Dist: numpy (>=1.9.0); extra == 'all'
  36. Requires-Dist: pytest (>=2.8.0); extra == 'all'
  37. Requires-Dist: pytz; extra == 'all'
  38. Requires-Dist: pytz; extra == 'all'
  39. Requires-Dist: pytz; extra == 'all'
  40. Provides-Extra: datetime
  41. Requires-Dist: pytz; extra == 'datetime'
  42. Provides-Extra: django
  43. Requires-Dist: pytz; extra == 'django'
  44. Requires-Dist: django (<2,>=1.8); extra == 'django'
  45. Provides-Extra: fakefactory
  46. Requires-Dist: Faker (>=0.7); extra == 'fakefactory'
  47. Provides-Extra: faker
  48. Requires-Dist: Faker (>=0.7); extra == 'faker'
  49. Provides-Extra: numpy
  50. Requires-Dist: numpy (>=1.9.0); extra == 'numpy'
  51. Provides-Extra: pytest
  52. Requires-Dist: pytest (>=2.8.0); extra == 'pytest'
  53. Provides-Extra: pytz
  54. Requires-Dist: pytz; extra == 'pytz'
  55. ==========
  56. Hypothesis
  57. ==========
  58. Hypothesis is an advanced testing library for Python. It lets you write tests which
  59. are parametrized by a source of examples, and then generates simple and comprehensible
  60. examples that make your tests fail. This lets you find more bugs in your code with less
  61. work.
  62. e.g.
  63. .. code-block:: python
  64. @given(st.lists(
  65. st.floats(allow_nan=False, allow_infinity=False), min_size=1))
  66. def test_mean(xs):
  67. assert min(xs) <= mean(xs) <= max(xs)
  68. .. code-block::
  69. Falsifying example: test_mean(
  70. xs=[1.7976321109618856e+308, 6.102390043022755e+303]
  71. )
  72. Hypothesis is extremely practical and advances the state of the art of
  73. unit testing by some way. It's easy to use, stable, and powerful. If
  74. you're not using Hypothesis to test your project then you're missing out.
  75. ------------------------
  76. Quick Start/Installation
  77. ------------------------
  78. If you just want to get started:
  79. .. code-block::
  80. pip install hypothesis
  81. -----------------
  82. Links of interest
  83. -----------------
  84. The main Hypothesis site is at `hypothesis.works <http://hypothesis.works>`_, and contains a lot
  85. of good introductory and explanatory material.
  86. Extensive documentation and examples of usage are `available at readthedocs <https://hypothesis.readthedocs.io/en/master/>`_.
  87. If you want to talk to people about using Hypothesis, `we have both an IRC channel
  88. and a mailing list <https://hypothesis.readthedocs.io/en/latest/community.html>`_.
  89. If you want to receive occasional updates about Hypothesis, including useful tips and tricks, there's a
  90. `TinyLetter mailing list to sign up for them <http://tinyletter.com/DRMacIver/>`_.
  91. If you want to contribute to Hypothesis, `instructions are here <https://github.com/HypothesisWorks/hypothesis-python/blob/master/CONTRIBUTING.rst>`_.
  92. If you want to hear from people who are already using Hypothesis, some of them `have written
  93. about it <https://hypothesis.readthedocs.io/en/latest/endorsements.html>`_.
  94. If you want to create a downstream package of Hypothesis, please read `these guidelines for packagers <https://hypothesis.readthedocs.io/en/latest/packaging.html>`_.