Skip to content

A tool that runs the Django test suite for a given application without requiring a fully-configured project

License

Notifications You must be signed in to change notification settings

shaneallgeier/django-app-tester

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

django-app-tester

About

django_apptest is a command-line utility for testing your pluggable Django apps outside of a fully-configured project. It will bootstrap Django and run the tests inside your app without having to create a Django project, fill out a settings.py file or any other preparation.

Usage

To run the test suite on an app called my_app, cd into the directory above the my_app directory and run:

$ django_apptest my_app

Use as a module

The simplest way of using django_apptest as a module is via the DjangoAppTest class.

>>> from django_apptest import DjangoAppTest
>>> DjangoAppTest('my_app', 'your_app').run_tests()

About

A tool that runs the Django test suite for a given application without requiring a fully-configured project

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages