The snippet is a modification of snippet 1315 to fit the needs for Django 1.3 and 1.4. You can follow the explanations and instructions there.
To plot a nice and so useful call-graph with timings, call:
$ gprof2dot -f pstats unittest.profile | dot -Tpng -o unittest.profile.graph.png
where 'unittest.profile' is the test runners profile output defined in your settings.
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
- Browser-native date input field by kytta 1 month, 1 week ago
- Generate and render HTML Table by LLyaudet 1 month, 2 weeks ago
- My firs Snippets by GutemaG 1 month, 3 weeks ago
- FileField having auto upload_to path by junaidmgithub 2 months, 4 weeks ago
- LazyPrimaryKeyRelatedField by LLyaudet 3 months ago
Comments
Please login first before commenting.