Accepting request 535252 from devel:languages:python

Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/535252
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pytest-django?expand=0&rev=2
This commit is contained in:
Dominique Leuenberger 2017-10-20 12:47:07 +00:00 committed by Git OBS Bridge
parent 1901daa764
commit 7420cfe289
2 changed files with 11 additions and 5 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Thu Oct 12 14:06:41 UTC 2017 - jengelh@inai.de
- Improve write style of description.
-------------------------------------------------------------------
Wed Aug 23 14:48:12 UTC 2017 - t.gruner@katodev.de

View File

@ -37,14 +37,15 @@ BuildArch: noarch
%python_subpackages
%description
pytest-django allows you to test your Django project/applications with the
`pytest testing tool.
pytest-django allows testing Django projects/applications with the
pytest testing tool.
Running your test suite with pytest-django allows you to tap into the features
that are already present in pytest. Here are some advantages:
Running the test suite with pytest-django allows tapping into the features
that are already present in pytest:
* Manage test dependencies with pytest fixtures.
* Less boilerplate tests: no need to import unittest, create a subclass with methods. Write tests as regular functions.
* Less boilerplate tests: no need to import unittest and creating a
subclass with methods. Tests can be written 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.