🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

django-tdd

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

django-tdd

A continuous test runner for Django

0.1.0
PyPI
Maintainers
1

django-tdd

A Django management command to run tests every time a file is saved.

Installation

pip install django-tdd

Then add django-tdd to your INSTALLED_APPS:

INSTALLED_APPS = {
  ...
  'django_tdd',
}

Usage

Use the management command in place of runserver. The following command will run all of the tests in your project and then start the development server.

python manage.py tdd

When you change a file, the development server will stop, all the tests will be run again, and the development server will start again.

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts