-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPKG-INFO
64 lines (54 loc) · 3.17 KB
/
PKG-INFO
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
Metadata-Version: 1.1
Name: pytest-django
Version: 2.8.0
Summary: A Django plugin for py.test.
Home-page: http://pytest-django.readthedocs.org/
Author: Andreas Pelme
Author-email: [email protected]
License: UNKNOWN
Description: .. image:: https://secure.travis-ci.org/pytest-dev/pytest-django.png?branch=master
:alt: Build Status
:target: https://travis-ci.org/pytest-dev/pytest-django
Welcome to pytest-django!
=========================
pytest-django allows you to test your Django project/applications with the
`pytest testing tool <http://pytest.org/>`_.
* `Quick start / tutorial
<http://pytest-django.readthedocs.org/en/latest/tutorial.html>`_
* Full documentation: http://pytest-django.readthedocs.org/en/latest/
* `Contribution docs
<http://pytest-django.readthedocs.org/en/latest/contributing.html>`_
* Version compatibility:
* Django: 1.3-1.8 and latest master branch (compatible at the time of each release)
* Python: CPython 2.6-2.7,3.2-3.4 or PyPy 2,3
* pytest: 2.6.x
* Licence: BSD
* Project maintainers: Andreas Pelme, Floris Bruynooghe and Daniel Hahler
* `All contributors <https://github.com/pytest-dev/pytest-django/contributors>`_
* Github repository: https://github.com/pytest-dev/pytest-django
* `Issue tracker <http://github.com/pytest-dev/pytest-django/issues>`_
* `Python Package Index (PyPI) <https://pypi.python.org/pypi/pytest-django/>`_
Why would I use this instead of Django's `manage.py test` command?
------------------------------------------------------------------
Running your test suite with pytest-django allows you to tap into the features
that are already present in pytest. Here are some advantages:
* `Manage test dependencies with pytest fixtures. <http://pytest.org/latest/fixture.html>`_
* Less boilerplate tests: no need to import unittest, create a subclass with methods. Write tests as regular functions.
* Database re-use: no need to re-create the test database for every test run.
* Run tests in multiple processes for increased speed (with the pytest-xdist plugin).
* Make use of other `pytest plugins <http://pytest.org/latest/plugins.html>`_.
* Works with both worlds: Existing unittest-style TestCase's still work without any modifications.
See the `pytest documentation <http://pytest.org/latest/>`_ for more information on pytest itself.
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Testing
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4