Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
  • I have a python-django application
  • I'm using the unit testing framework
  • The tests are arranged in the file "tests.py" in the module directory
  • I'm running the tests via ./manage.py test app

Now..

  • The tests.py file is getting rather large/complex/messy
  • I'd like to break tests.py up into smaller collections of tests...

How?

share|improve this question

4 Answers

up vote 42 down vote accepted

You can create tests folder with __init__.py inside (so that it becomes a package). Then you add there your split test .py files and import all of them in __init.py__.


I.e: Substitute the test.py file with a module that looks and acts like the file:

Create a `tests` Directory under the app in question

app
app\models.py
app\views.py
app\tests
app\tests\__init__.py
app\tests\bananas.py
app\tests\apples.py

Import the submodules into app\tests\__init__.py:

from bananas import *
from apples import *

Now you can use ./manage.py as if they are all in a single file:

./manage.py test app.some_test_in_bananas
share|improve this answer
Doh. You meant create a 'tests' module under the application I'm testing; not a new application called tests. I get it now. Awesome. Thanks! – John Mee Jun 8 '11 at 4:16
@John: I can't recognize my answer anymore! :-) But you are completely right that it was too vague, even if correct - your examples make it clear, contrary to my original wording. – Tomasz Zielinski Jun 8 '11 at 11:06
1  
@Tomasz.. Your words are still there - wholly intact. I just fleshed it out a little since you put me on the right track. – John Mee Jun 8 '11 at 23:35
@John: I wasn't angry at all if that's what you mean :) It was just funny to see my own answer in a bit different shape – Tomasz Zielinski Jun 9 '11 at 15:31
2  
@jMyles, if by "regular django test runner" you mean python manage.py test myapp then in fact this answer does work just fine. (just tried it) – Kirk Woll Jul 24 '12 at 21:08
show 1 more comment

http://docs.python.org/library/unittest.html#organizing-tests talks about splitting the files into modules, and the section right above it has an example.

share|improve this answer
The 'bit extra' I'm looking for, over rtfm, is the django settings environment, database, and fixtures for the tests. – John Mee Jun 8 '11 at 1:25

The answer as stated by Tomasz is correct. However, it can become tedious to ensure that the imports in __init__.py match your file structure.

To automatically detect all tests in the folder you can add this in __init__.py:

import unittest

def suite():   
    return unittest.TestLoader().discover("appname.tests", pattern="*.py")

This will allow you to run ./manage.py test appname but won't handle running specific tests. To do that you can use this code (also in __init__.py):

import pkgutil
import unittest

for loader, module_name, is_pkg in pkgutil.walk_packages(__path__):
    module = loader.find_module(module_name).load_module(module_name)
    for name in dir(module):
        obj = getattr(module, name)
        if isinstance(obj, type) and issubclass(obj, unittest.case.TestCase):
            exec ('%s = obj' % obj.__name__)

Now you can run all your tests via manage.py test app or specific ones via manage.py test app.TestApples

share|improve this answer
Where do you place the second piece? – rh0dium Apr 17 at 23:24
Both pieces go into __init__.py – Bryce Drennan Apr 19 at 20:04

If you have a more complicated setup, or don't want to use from ... import *-type statements, you can define a function called suite in your tests.py (or tests/__init__.py), which returns an instance of unittest.TestSuite.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.