summaryrefslogtreecommitdiff
path: root/lib/python2.7/site-packages/south/management/commands/test.py
blob: 990178637a6451af0d52d8b20000c82425b27d1b (plain)
1
2
3
4
5
6
7
8
from django.core.management.commands import test

from south.management.commands import patch_for_test_db_setup

class Command(test.Command):
    def handle(self, *args, **kwargs):
        patch_for_test_db_setup()
        super(Command, self).handle(*args, **kwargs)