Unit Test Profiling for Django 1.3/1.4

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#
# File : profiling.py
#
from django.test.simple import DjangoTestSuiteRunner
from django.conf import settings
from django.utils import unittest


try:
    import cProfile as profile
except ImportError:
    import profile


class DjangoTestSuiteRunnerWithProfile(DjangoTestSuiteRunner):

    def run_suite(self, suite, **kwargs):
        runner = unittest.TextTestRunner(
            verbosity=self.verbosity, failfast=self.failfast).run

        profile.runctx(
            'result = run_tests(suite)',
            {
                'run_tests': runner,
                'suite': suite,
            },
            locals(),
            getattr(settings,'TEST_PROFILE', None)
        )
        return locals()['result']

#
# File : settings.py
#
TEST_RUNNER = 'profiling.DjangoTestSuiteRunnerWithProfile'
TEST_PROFILE = 'unittest.profile'

More like this

  1. Unit Test Profiling by justquick 4 years, 3 months ago
  2. pycallgraph by roppert 4 years, 3 months ago
  3. Syntax highlighting for tracebacks during tests by jezdez 9 months ago
  4. Profiling middleware using cProfile by sgb 5 years ago
  5. Zope testing django layer by grahamcarlyle 5 years, 3 months ago

Comments

(Forgotten your password?)