As the name suggests, this plugin allows you to test your Django (https://www.djangoproject.com/) applications using pytest. Django is one of the most famous web frameworks in use today.
The plugin provides a ton of features:
- A very nice Quick Start tutorial
- Command-line and pytest.ini options to configure Django
- Compatibility with pytest-xdist
- Database access using the django_db mark, with automatic transaction rollback between tests, as well as a bunch of fixtures that let you control how the database is managed
- Fixtures to make requests to your application: client, admin_client, and admin_user
- A live_server fixture that runs a Django server in a background thread
All in all, this is one of the most complete plugins available ...