A minimal plugin to integrate Django and py.test.
Install the plugin:
pip install pytest-django-lite
You have two options to configure your testsuite's Django settings.
def pytest_configure(config):
from django.conf import settings
settings.configure(
DATABASES={},
INSTALLED_APPS=[],
# etc
)
DJANGO_SETTINGS_MODULE=myapp.settings py.test
from django.test import TestCase
from myapp.models import Foo
class MyTest(TestCase):
def test_foo(self):
assert Foo.objects.count() == 2
Note
This only supports classical Django tests (class-based inheritence)
This was originally based on pytest-django.