https://github.com/dcramer/pytest-django-lite
The bare minimum to integrate py.test with Django.
https://github.com/dcramer/pytest-django-lite
Last synced: about 1 year ago
JSON representation
The bare minimum to integrate py.test with Django.
- Host: GitHub
- URL: https://github.com/dcramer/pytest-django-lite
- Owner: dcramer
- License: apache-2.0
- Created: 2012-12-07T23:12:26.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2014-01-30T06:48:31.000Z (over 12 years ago)
- Last Synced: 2025-02-06T11:18:57.152Z (over 1 year ago)
- Language: Python
- Size: 177 KB
- Stars: 11
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
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
-----------------------
.. code:: python
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
===========
.. code:: python
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)
Credits
=======
This was originally based on `pytest-django `_.