dj-nodb

custom django testrunner


License
Apache-2.0
Install
pip install dj-nodb==0.0.2

Documentation

dj-nodb

Custom django testrunner that eliminates test database creation when running tests.

Installation

  • pip install djnodb

This will place the custom testrunner (runner.py) at the root of your project. Alternatively you can move it to any part of your application you desire.

Usage (default)

Override django's default testrunner by adding the following to your settings

TEST_RUNNER = 'djnodb.runner.NoDbTestRunner'