A minimal plugin to integrate Django and py.test.
Usage
Install the plugin:
pip install pytest-django-lite
Configuring Django
You have two options to configure your testsuite’s Django settings.
1. Create a conftest.py
def pytest_configure(config):
from django.conf import settings
settings.configure(
DATABASES={},
INSTALLED_APPS=[],
# etc
)
2. Pass DJANGO_SETTINGS_MODULE
DJANGO_SETTINGS_MODULE=myapp.settings py.test
Write Tests
from django.test import TestCase
from myapp.models import Foo
class MyTest(TestCase):
def test_foo(self):
assert Foo.objects.count() == 2
Credits
This was originally based on pytest-django.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file pytest-django-lite-0.1.1.tar.gz.
File metadata
- Download URL: pytest-django-lite-0.1.1.tar.gz
- Upload date:
- Size: 2.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
546c916327a3aa19976a626f6b6f0c5ed6c1d2dc005d4530045b76060aab3c0b
|
|
| MD5 |
38c3aaa6f616f9aeeb451e2ed592d92a
|
|
| BLAKE2b-256 |
ddbfadc28cd8495d1d06e4a55948619316f2d6c3da8e0ea41f1e541572d8095f
|