Nice pytest plugin to help you with Django pluggable application testing.
Project description
pytest-djangoapp
https://github.com/idlesign/pytest-djangoapp
Description
Nice pytest plugin to help you with Django pluggable application testing.
This exposes some useful tools for Django applications developers to facilitate tests authoring, including:
- Settings overriding
- Template tags testing
- User creation
- Request object creation
- Management command calls
- Mailing
- Migrations
- Messages
- Signals
- DB queries audit
- Live server & client UI testing
- Registered urlpatterns listing
- Admin interface testing
- etc.
Suitable for testing apps for Django 1.8+.
How to use
Let's say you have classical tests placing (inside application directory):
package_dir
|__ myapp
| |__ __init__.py
| |__ tests
| | |__ __init__.py
| | |__ conftest.py <- Configure djangoapp here.
|
|__ pyproject.toml
Add the following lines into conftest.py to configure djangoapp and start using it:
from pytest_djangoapp import configure_djangoapp_plugin
pytest_plugins = configure_djangoapp_plugin()
Fixtures usage examples can be found in the documentation and the source code.
Testing an entire project
Despite the fact that djangoapp is primarily aimed to reusable
Django applications testing one can use it also to test a project (a set of apps).
For that, pass a dotted settings module path into settings argument:
pytest_plugins = configure_djangoapp_plugin(
settings='myproject.settings.settings_testing',
migrate=False, # If you do not want to apply migrations.
)
What about pytest-django
pytest-djangoapp does not depend on pytest-django.
There are design decisions in pytest-django that might make it uncomfortable to work with.
-
It uses
setuptoolsentrypoints feature forpytestplugin discovery. It's not a problem by itself, but all kinds of bootstrapping with side effects made bypytest-djangojust on startup, make the plugin a poor choice for cases of system-wide (i.e. not venv) installations. -
Philosophy that next to no unit test should require DB access may be quite annoying.
-
Some fixtures (e.g.
django_assert_num_queries) usability arouse questions.
Despite that pytest-django is nice, of course.
pytest-djangoapp fixtures allow the use of Django without marking all relevant tests as needing
a database, as is required by pytest-django which provides the django_db mark and db fixtures.
If you have pytest-django already installed, it can be disabled for projects
using pytest-djangoapp by adding the following lines into pytest.ini:
[pytest]
addopts = -p no:django
Documentation
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pytest_djangoapp-1.6.0.tar.gz.
File metadata
- Download URL: pytest_djangoapp-1.6.0.tar.gz
- Upload date:
- Size: 18.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.20
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d4c0c6b94a7dd5cc88a8632057a0867b6ebbbd5c2d70fd80d95d824cc8113d2
|
|
| MD5 |
c7611571f10b633bad9545e1b0569ca5
|
|
| BLAKE2b-256 |
ea60cb3a657c9626bb78e5ab61431660e511ca93f9299a11f1b97a29c41f9bb6
|
File details
Details for the file pytest_djangoapp-1.6.0-py3-none-any.whl.
File metadata
- Download URL: pytest_djangoapp-1.6.0-py3-none-any.whl
- Upload date:
- Size: 25.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.20
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bc337ed1e4b62be4d3d9217fed3e8671093fe1946d57002ea3b50f019a70d9a1
|
|
| MD5 |
4a0cb6664fe7f510b7e84fe92de966c6
|
|
| BLAKE2b-256 |
454304931f9a37414386c39e7d2b2e1a6bae1044320f1576fd685fc482f2b227
|