• This repository has been archived on 14/Jan/2019
  • Stars
    star
    134
  • Rank 270,967 (Top 6 %)
  • Language
    Python
  • License
    Other
  • Created over 12 years ago
  • Updated over 11 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A Django test runner based on unittest2's test discovery.

django-discover-runner

Note

This runner has been added to Django 1.6 as the default test runner. If you use Django 1.6 or above you don't need this app.

An alternative Django TEST_RUNNER which uses the unittest2 test discovery from a base path specified in the settings, or any other module or package specified to the test management command -- including app tests.

If you just run ./manage.py test, it'll discover and run all tests underneath the current working directory. E.g. if you run ./manage.py test full.dotted.path.to.test_module, it'll run the tests in that module (you can also pass multiple modules). If you give it a single dotted path to a package (like a Django app) like ./manage.py test myapp and that package does not itself directly contain any tests, it'll do test discovery in all submodules of that package.

Note

This code uses the default unittest2 test discovery behavior, which only searches for tests in files named test*.py. To override this see the TEST_DISCOVER_PATTERN setting or use the --pattern option.

Why?

Django's own test discovery is very much tied to the directory structure of Django apps, partly due to historic reasons (the unittest library didn't have its own discovery for a long time) and prevents Django app authors from being good Python citizens. django-discover-runner uses the official test discovery feature of the new unittest2 library which is included in Django.

By default there is no way to put project specific tests in a separate folder outside the Python package of the Django project, which is a great way to organize your code, separating the tests and non-test code. django-discover-runner helps you clean up your project tests.

There is also no way to specify fully dotted import paths to test modules, functions, class or methods to the test management command but only Django's odd standard <appname>.<TestClassName>. django-discover-runner allows you to specify any type of label to Django's test management command.

By default Django's test runner will execute the tests of Django's own contrib apps, which doesn't make sense if you just want to run your own app's or project's tests. django-discover-runner fixes this by allowing you to specify which tests to run and organize your test code outside the reach of the Django test runner.

More reasons can be found in Carl Meyer's excellent talk about Testing and Django (slides).

Installation

Install it with your favorite installer, e.g.:

pip install -U django-discover-runner

django-discover-runner requires at least Django 1.4 and also works on 1.5.x. Starting in Django 1.6 the discover runner is a built-in.

Setup

  • TEST_RUNNER (required) needs to point to the DiscoverRunner class to enable it:

    TEST_RUNNER = 'discover_runner.DiscoverRunner'
    
  • Add 'discover_runner' to your INSTALLED_APPS setting to enable the ability to override the discovery settings below when using the test management command.

  • TEST_DISCOVER_TOP_LEVEL (optional) should be the directory containing your top-level package(s); in other words, the directory that should be on sys.path for your code to import. This is for example the directory containing manage.py in the new Django 1.4 project layout. The management command option is called --top-level.

  • TEST_DISCOVER_PATTERN (optional) is the pattern to use when discovering tests and defaults to the unittest2 standard test*.py. The management command option is called --pattern.

Examples

Django app

To test a reusable Django app it's recommended to add a test_settings.py file to your app package to easily run the app tests with the test management command. Simply set the TEST_RUNNER setting to 'discover_runner.DiscoverRunner', configure the other settings necessary to run your tests and call the test management command with the name of the app package, e.g.:

django-admin.py test --settings=myapp.test_settings myapp

Django project

If you want to test a project and want to store the project's tests outside the project main package (recommended), you can simply follow the app instructions above, applying it to the "project" package, but set a few additional settings to tell the test runner to find the tests:

from os import path
TEST_DISCOVER_TOP_LEVEL = path.dirname(path.dirname(__file__))

This would find all the tests within a top-level "tests" package. Running the tests is as easy as calling:

django-admin.py test --settings=mysite.test_settings tests

Alternatively you can specify the --top-level-directory management command option.

Multiple Django versions

In case you want to test your app on older Django versions as well as Django >= 1.6 you can simply conditionally configure the test runner in your test settings, e.g.:

import django

if django.VERSION[:2] < (1, 6):
  TEST_RUNNER = 'discover_runner.DiscoverRunner'

Changelog

1.0 06/15/2013

  • GOOD NEWS! This runner was added to Django 1.6 as the new default! This version backports that runner for Django 1.4.x and 1.5.x.
  • Removed TEST_DISCOVER_ROOT setting in favor of unittest2's own way to figure out the root.
  • Dropped support for Django 1.3.x.

0.4 04/12/2013

  • Added ability to override the discover settings with a custom test management command.

0.3 01/28/2013

  • Fixed setup.py to work on Python 3. This should make this app compatible to Python 3.

0.2.2 09/04/2012

  • Stopped setting the top level variable in the case of using a module path as the test label as it made the wrong assumption that the parent directory is the top level.

0.2.1 08/20/2012

  • Fixed a rather esoteric bug with testing test case class methods that was caused by a wrong import and the way Django wraps itself around the unittest2 module (if availale) or unittest on Python >= 2.7.

0.2 05/26/2012

  • Added ability to use an optionally installed unittest2 library for Django projects using Django < 1.3 (which added unittest2 to the django.utils.unittest package).

0.1.1 05/23/2012

  • Fixed a bug that prevented the project based feature to work correctly.

0.1 05/20/2012

  • Initial release with support for Django >= 1.3.

Thanks

This test runner is a humble rip-off of Carl Meyer's DiscoveryRunner which he published as a gist a while ago. All praise should be directed at him. Thanks, Carl!

This was also very much related to ticket #17365 which eventually led to the replacement of the default test runner in Django. Thanks again, Carl!

More Repositories

1

textmate-missingdrawer

[UNMAINTAINED] A better sidebar for Textmate.
Objective-C
728
star
2

envdir

A Python port of daemontools' envdir.
Python
229
star
3

caniusepython3.com

A site to check if your Python project is compatible with Python 3
JavaScript
136
star
4

django-staticfiles

[Unmaintained] A Django app that provides helpers for serving static files, used in Django and Pinax.
Python
127
star
5

django-mobileadmin

[UNMAINTAINED] The Django admin interface optimized for iPhone/iPod touch. Pretty out of date, so be careful.
Python
117
star
6

python-startup

Python
35
star
7

pycompletion

[UNMAINTAINED] A lib to collect command line completion scripts of Python packages
Python
33
star
8

dokku-elasticsearch-plugin

[unmaintained] A working Elasticsearch plugin for Dokku (run Docker with -icc=true)
Shell
32
star
9

django-comment-utils

A fork of James Bennett's django-comment-utils that should work with Django 1.0
Python
31
star
10

django-memcached-hashring

A Django cache backend for Memcached with consistent hashing.
Python
20
star
11

gitserve

[OUTDATED, Use git instaweb instead] A helper tool for git that mimics mercurial's serve command.
Python
20
star
12

dokku-memcached-plugin

A working Memcached plugin for Dokku (run Docker with -icc=true)
Shell
19
star
13

dokku-redis-plugin

A working Redis plugin for Dokku (run Docker with -icc=true)
Shell
19
star
14

dokku-postgres-plugin

A working Postgres plugin for Dokku (run Docker with -icc=true)
Shell
17
star
15

django-rcsfield

UNSUPPORTED Mirror of django-rcsfield svn repository
Python
15
star
16

django-reusableapps

ZOMG, eggs are bad, don't use this.
Python
14
star
17

django-unchained

Python
13
star
18

django-sites-tools

DEPRECATED Use django-hosts instead!
Python
12
star
19

django-feedutil

Python
11
star
20

limechat-whisper

[UNMAINTAINED] Subtle theme for the IRC client LimeChat
11
star
21

django-vcstorage

A Django app that provides file storage backends and file fields for Mercurial, Git and Bazaar by using anyvc.
Python
10
star
22

django-ticker

A simple Django app that provides a ticker like news section including row level permission based workflow
Python
9
star
23

dokku-sentry-webhook

A plugin for Dokku that notifies Sentry of deployments for release tracking.
Shell
7
star
24

pownce-jabber-bot

A mirror of the old Subversion repository of the now defunkt Pownce jabber bot. Only for educational purposes..
Python
6
star
25

ressl

A SSL redirector for shared hosting environments, e.g. Webfaction
Python
6
star
26

django-de

The app that drives http://www.django-de.org
JavaScript
6
star
27

django-contact-form

This is here solely for legacy reasons. Don't use it. I don't support it.
Python
6
star
28

queues

Friendly fork of Matt Croydon's queues lib
Python
5
star
29

umap-dokku

Python
5
star
30

virtualmin-trac

A Virtualmin Pro install script that enables users to install Trac automatically
Perl
5
star
31

sublime-preferences

My Sublime Test 2 preferences
4
star
32

sphinxcontrib-embedly

This is a sphinx extension for using Embedly.
Python
4
star
33

django-locations

a location based social network using Django
Python
4
star
34

piwik-dokku

Nginx
4
star
35

django-openid

OpenID tools for Django
Python
4
star
36

snsz

Karte der Allgemeinverfügungen zu Schulschließungen oder eingeschränktem Regelbetrieb in Sachsen
Python
3
star
37

jzdz

A complete rip-off of bgk.me. Also a URL shortener.
Python
2
star
38

rq2test

Python
2
star
39

virtualmin-moinmoin

A Virtualmin Pro install script that enables users to install the MoinMoin wiki automatically
Perl
2
star
40

GeekTime.app

My humble PyObjC version of a Geek Time menu status app for OS X. Please fork and port it to proper ObjC. kthxbye
Python
2
star
41

isso-dokku

Python
1
star
42

pytuio

Automatically exported from code.google.com/p/pytuio
Python
1
star