Skip to content

Latest commit

 

History

History
18 lines (11 loc) · 466 Bytes

README.rst

File metadata and controls

18 lines (11 loc) · 466 Bytes

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'