METADATA 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. Metadata-Version: 2.4
  2. Name: pytest
  3. Version: 9.0.2
  4. Summary: pytest: simple powerful testing with Python
  5. Author: Holger Krekel, Bruno Oliveira, Ronny Pfannschmidt, Floris Bruynooghe, Brianna Laugher, Florian Bruhin, Others (See AUTHORS)
  6. License-Expression: MIT
  7. Project-URL: Changelog, https://docs.pytest.org/en/stable/changelog.html
  8. Project-URL: Contact, https://docs.pytest.org/en/stable/contact.html
  9. Project-URL: Funding, https://docs.pytest.org/en/stable/sponsor.html
  10. Project-URL: Homepage, https://docs.pytest.org/en/latest/
  11. Project-URL: Source, https://github.com/pytest-dev/pytest
  12. Project-URL: Tracker, https://github.com/pytest-dev/pytest/issues
  13. Keywords: test,unittest
  14. Classifier: Development Status :: 6 - Mature
  15. Classifier: Intended Audience :: Developers
  16. Classifier: Operating System :: MacOS
  17. Classifier: Operating System :: Microsoft :: Windows
  18. Classifier: Operating System :: POSIX
  19. Classifier: Operating System :: Unix
  20. Classifier: Programming Language :: Python :: 3 :: Only
  21. Classifier: Programming Language :: Python :: 3.10
  22. Classifier: Programming Language :: Python :: 3.11
  23. Classifier: Programming Language :: Python :: 3.12
  24. Classifier: Programming Language :: Python :: 3.13
  25. Classifier: Programming Language :: Python :: 3.14
  26. Classifier: Topic :: Software Development :: Libraries
  27. Classifier: Topic :: Software Development :: Testing
  28. Classifier: Topic :: Utilities
  29. Requires-Python: >=3.10
  30. Description-Content-Type: text/x-rst
  31. License-File: LICENSE
  32. Requires-Dist: colorama>=0.4; sys_platform == "win32"
  33. Requires-Dist: exceptiongroup>=1; python_version < "3.11"
  34. Requires-Dist: iniconfig>=1.0.1
  35. Requires-Dist: packaging>=22
  36. Requires-Dist: pluggy<2,>=1.5
  37. Requires-Dist: pygments>=2.7.2
  38. Requires-Dist: tomli>=1; python_version < "3.11"
  39. Provides-Extra: dev
  40. Requires-Dist: argcomplete; extra == "dev"
  41. Requires-Dist: attrs>=19.2; extra == "dev"
  42. Requires-Dist: hypothesis>=3.56; extra == "dev"
  43. Requires-Dist: mock; extra == "dev"
  44. Requires-Dist: requests; extra == "dev"
  45. Requires-Dist: setuptools; extra == "dev"
  46. Requires-Dist: xmlschema; extra == "dev"
  47. Dynamic: license-file
  48. .. image:: https://github.com/pytest-dev/pytest/raw/main/doc/en/img/pytest_logo_curves.svg
  49. :target: https://docs.pytest.org/en/stable/
  50. :align: center
  51. :height: 200
  52. :alt: pytest
  53. ------
  54. .. image:: https://img.shields.io/pypi/v/pytest.svg
  55. :target: https://pypi.org/project/pytest/
  56. .. image:: https://img.shields.io/conda/vn/conda-forge/pytest.svg
  57. :target: https://anaconda.org/conda-forge/pytest
  58. .. image:: https://img.shields.io/pypi/pyversions/pytest.svg
  59. :target: https://pypi.org/project/pytest/
  60. .. image:: https://codecov.io/gh/pytest-dev/pytest/branch/main/graph/badge.svg
  61. :target: https://codecov.io/gh/pytest-dev/pytest
  62. :alt: Code coverage Status
  63. .. image:: https://github.com/pytest-dev/pytest/actions/workflows/test.yml/badge.svg
  64. :target: https://github.com/pytest-dev/pytest/actions?query=workflow%3Atest
  65. .. image:: https://results.pre-commit.ci/badge/github/pytest-dev/pytest/main.svg
  66. :target: https://results.pre-commit.ci/latest/github/pytest-dev/pytest/main
  67. :alt: pre-commit.ci status
  68. .. image:: https://www.codetriage.com/pytest-dev/pytest/badges/users.svg
  69. :target: https://www.codetriage.com/pytest-dev/pytest
  70. .. image:: https://readthedocs.org/projects/pytest/badge/?version=latest
  71. :target: https://pytest.readthedocs.io/en/latest/?badge=latest
  72. :alt: Documentation Status
  73. .. image:: https://img.shields.io/badge/Discord-pytest--dev-blue
  74. :target: https://discord.com/invite/pytest-dev
  75. :alt: Discord
  76. .. image:: https://img.shields.io/badge/Libera%20chat-%23pytest-orange
  77. :target: https://web.libera.chat/#pytest
  78. :alt: Libera chat
  79. The ``pytest`` framework makes it easy to write small tests, yet
  80. scales to support complex functional testing for applications and libraries.
  81. An example of a simple test:
  82. .. code-block:: python
  83. # content of test_sample.py
  84. def inc(x):
  85. return x + 1
  86. def test_answer():
  87. assert inc(3) == 5
  88. To execute it::
  89. $ pytest
  90. ============================= test session starts =============================
  91. collected 1 items
  92. test_sample.py F
  93. ================================== FAILURES ===================================
  94. _________________________________ test_answer _________________________________
  95. def test_answer():
  96. > assert inc(3) == 5
  97. E assert 4 == 5
  98. E + where 4 = inc(3)
  99. test_sample.py:5: AssertionError
  100. ========================== 1 failed in 0.04 seconds ===========================
  101. Thanks to ``pytest``'s detailed assertion introspection, you can simply use plain ``assert`` statements. See `getting-started <https://docs.pytest.org/en/stable/getting-started.html#our-first-test-run>`_ for more examples.
  102. Features
  103. --------
  104. - Detailed info on failing `assert statements <https://docs.pytest.org/en/stable/how-to/assert.html>`_ (no need to remember ``self.assert*`` names)
  105. - `Auto-discovery
  106. <https://docs.pytest.org/en/stable/explanation/goodpractices.html#python-test-discovery>`_
  107. of test modules and functions
  108. - `Modular fixtures <https://docs.pytest.org/en/stable/explanation/fixtures.html>`_ for
  109. managing small or parametrized long-lived test resources
  110. - Can run `unittest <https://docs.pytest.org/en/stable/how-to/unittest.html>`_ (or trial)
  111. test suites out of the box
  112. - Python 3.10+ or PyPy3
  113. - Rich plugin architecture, with over 1300+ `external plugins <https://docs.pytest.org/en/latest/reference/plugin_list.html>`_ and thriving community
  114. Documentation
  115. -------------
  116. For full documentation, including installation, tutorials and PDF documents, please see https://docs.pytest.org/en/stable/.
  117. Bugs/Requests
  118. -------------
  119. Please use the `GitHub issue tracker <https://github.com/pytest-dev/pytest/issues>`_ to submit bugs or request features.
  120. Changelog
  121. ---------
  122. Consult the `Changelog <https://docs.pytest.org/en/stable/changelog.html>`__ page for fixes and enhancements of each version.
  123. Support pytest
  124. --------------
  125. `Open Collective`_ is an online funding platform for open and transparent communities.
  126. It provides tools to raise money and share your finances in full transparency.
  127. It is the platform of choice for individuals and companies that want to make one-time or
  128. monthly donations directly to the project.
  129. See more details in the `pytest collective`_.
  130. .. _Open Collective: https://opencollective.com
  131. .. _pytest collective: https://opencollective.com/pytest
  132. pytest for enterprise
  133. ---------------------
  134. Available as part of the Tidelift Subscription.
  135. The maintainers of pytest and thousands of other packages are working with Tidelift to deliver commercial support and
  136. maintenance for the open source dependencies you use to build your applications.
  137. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use.
  138. `Learn more. <https://tidelift.com/subscription/pkg/pypi-pytest?utm_source=pypi-pytest&utm_medium=referral&utm_campaign=enterprise&utm_term=repo>`_
  139. Security
  140. ^^^^^^^^
  141. pytest has never been associated with a security vulnerability, but in any case, to report a
  142. security vulnerability please use the `Tidelift security contact <https://tidelift.com/security>`_.
  143. Tidelift will coordinate the fix and disclosure.
  144. License
  145. -------
  146. Copyright Holger Krekel and others, 2004.
  147. Distributed under the terms of the `MIT`_ license, pytest is free and open source software.
  148. .. _`MIT`: https://github.com/pytest-dev/pytest/blob/main/LICENSE