PKG-INFO 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. Metadata-Version: 2.1
  2. Name: pytest-django
  3. Version: 3.10.0
  4. Summary: A Django plugin for pytest.
  5. Home-page: https://pytest-django.readthedocs.io/
  6. Author: Andreas Pelme
  7. Author-email: andreas@pelme.se
  8. Maintainer: Andreas Pelme
  9. Maintainer-email: andreas@pelme.se
  10. License: BSD-3-Clause
  11. Project-URL: Source, https://github.com/pytest-dev/pytest-django
  12. Project-URL: Changelog, https://pytest-django.readthedocs.io/en/latest/changelog.html
  13. Description: .. image:: https://img.shields.io/pypi/v/pytest-django.svg?style=flat
  14. :alt: PyPI Version
  15. :target: https://pypi.python.org/pypi/pytest-django
  16. .. image:: https://img.shields.io/pypi/pyversions/pytest-django.svg
  17. :alt: Supported Python versions
  18. :target: https://pypi.python.org/pypi/pytest-django
  19. .. image:: https://travis-ci.org/pytest-dev/pytest-django.svg?branch=master
  20. :alt: Build Status
  21. :target: https://travis-ci.org/pytest-dev/pytest-django
  22. .. image:: https://img.shields.io/codecov/c/github/pytest-dev/pytest-django.svg?style=flat
  23. :alt: Coverage
  24. :target: https://codecov.io/gh/pytest-dev/pytest-django
  25. Welcome to pytest-django!
  26. =========================
  27. pytest-django allows you to test your Django project/applications with the
  28. `pytest testing tool <https://pytest.org/>`_.
  29. * `Quick start / tutorial
  30. <https://pytest-django.readthedocs.io/en/latest/tutorial.html>`_
  31. * `Changelog <https://pytest-django.readthedocs.io/en/latest/changelog.html>`_
  32. * Full documentation: https://pytest-django.readthedocs.io/en/latest/
  33. * `Contribution docs
  34. <https://pytest-django.readthedocs.io/en/latest/contributing.html>`_
  35. * Version compatibility:
  36. * Django: 1.8-1.11, 2.0-2.2,
  37. and latest master branch (compatible at the time of each release)
  38. * Python: CPython 2.7, 3.4-3.7 or PyPy 2, 3
  39. * pytest: >=3.6
  40. * Licence: BSD
  41. * Project maintainers: Andreas Pelme, Floris Bruynooghe and Daniel Hahler
  42. * `All contributors <https://github.com/pytest-dev/pytest-django/contributors>`_
  43. * GitHub repository: https://github.com/pytest-dev/pytest-django
  44. * `Issue tracker <http://github.com/pytest-dev/pytest-django/issues>`_
  45. * `Python Package Index (PyPI) <https://pypi.python.org/pypi/pytest-django/>`_
  46. Install pytest-django
  47. ---------------------
  48. ::
  49. pip install pytest-django
  50. Why would I use this instead of Django's `manage.py test` command?
  51. ------------------------------------------------------------------
  52. Running your test suite with pytest-django allows you to tap into the features
  53. that are already present in pytest. Here are some advantages:
  54. * `Manage test dependencies with pytest fixtures. <https://pytest.org/en/latest/fixture.html>`_
  55. * Less boilerplate tests: no need to import unittest, create a subclass with methods. Write tests as regular functions.
  56. * Database re-use: no need to re-create the test database for every test run.
  57. * Run tests in multiple processes for increased speed (with the pytest-xdist plugin).
  58. * Make use of other `pytest plugins <https://pytest.org/en/latest/plugins.html>`_.
  59. * Works with both worlds: Existing unittest-style TestCase's still work without any modifications.
  60. See the `pytest documentation <https://pytest.org/en/latest/>`_ for more information on pytest itself.
  61. Platform: UNKNOWN
  62. Classifier: Development Status :: 5 - Production/Stable
  63. Classifier: Framework :: Django
  64. Classifier: Framework :: Django :: 1.8
  65. Classifier: Framework :: Django :: 1.9
  66. Classifier: Framework :: Django :: 1.10
  67. Classifier: Framework :: Django :: 1.11
  68. Classifier: Framework :: Django :: 2.0
  69. Classifier: Framework :: Django :: 2.1
  70. Classifier: Framework :: Django :: 2.2
  71. Classifier: Framework :: Django :: 3.0
  72. Classifier: Framework :: Django :: 3.1
  73. Classifier: Intended Audience :: Developers
  74. Classifier: License :: OSI Approved :: BSD License
  75. Classifier: Operating System :: OS Independent
  76. Classifier: Programming Language :: Python
  77. Classifier: Programming Language :: Python :: 2.7
  78. Classifier: Programming Language :: Python :: 3.4
  79. Classifier: Programming Language :: Python :: 3.5
  80. Classifier: Programming Language :: Python :: 3.6
  81. Classifier: Programming Language :: Python :: 3.7
  82. Classifier: Programming Language :: Python :: 3.8
  83. Classifier: Programming Language :: Python :: Implementation :: CPython
  84. Classifier: Programming Language :: Python :: Implementation :: PyPy
  85. Classifier: Topic :: Software Development :: Testing
  86. Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
  87. Provides-Extra: docs
  88. Provides-Extra: testing