Sophie

Sophie

distrib > Fedora > 13 > i386 > by-pkgid > 24788a79727b2865c2ebb171420cb530 > files > 468

python-zope-testing-3.9.5-6.fc13.noarch.rpm

Profiling
=========

The testrunner includes the ability to profile the test execution with cProfile
via the `--profile=cProfile` option::

    >>> import os.path, sys
    >>> directory_with_tests = os.path.join(this_directory, 'testrunner-ex')
    >>> sys.path.append(directory_with_tests)

    >>> defaults = [
    ...     '--path', directory_with_tests,
    ...     '--tests-pattern', '^sampletestsf?$',
    ...     ]

    >>> sys.argv = [testrunner_script, '--profile=cProfile']

When the tests are run, we get profiling output::

    >>> from zope.testing import testrunner
    >>> testrunner.run_internal(defaults)
    Running...
    ...
       ncalls  tottime  percall  cumtime  percall filename:lineno(function)...
    ...

Profiling also works across layers::

    >>> sys.argv = [testrunner_script, '-ssample2', '--profile=cProfile',
    ...             '--tests-pattern', 'sampletests_ntd']
    >>> testrunner.run_internal(defaults)
    Running...
      Tear down ... not supported...
       ncalls  tottime  percall  cumtime  percall filename:lineno(function)...

The testrunner creates temnporary files containing cProfiler profiler
data::

    >>> import glob
    >>> files = list(glob.glob('tests_profile.*.prof'))
    >>> files.sort()
    >>> files
    ['tests_profile.cZj2jt.prof', 'tests_profile.yHD-so.prof']

It deletes these when rerun.  We'll delete these ourselves::

    >>> import os
    >>> for f in files:
    ...     os.unlink(f)