Class-based coverage test runner

 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
# -*- coding: utf-8 -*-
from django.conf import settings
from django.test.simple import DjangoTestSuiteRunner

import coverage


class CoverageRunner(DjangoTestSuiteRunner):

    def run_tests(self, *args, **kwargs):
        run_with_coverage = hasattr(settings, 'COVERAGE_MODULES')

        if run_with_coverage:
            coverage.use_cache(0)
            coverage.start()

        result = super(CoverageRunner, self).run_tests(*args, **kwargs)

        if run_with_coverage:
            coverage.stop()
            print ''
            print '----------------------------------------------------------------------'
            print ' Unit Test Code Coverage Results'
            print '----------------------------------------------------------------------'
            coverage_modules = []
            for module in settings.COVERAGE_MODULES:
                coverage_modules.append(__import__(module, globals(),
                                                   locals(), ['']))
            coverage.report(coverage_modules, show_missing=1)
            print '----------------------------------------------------------------------'

        return result

More like this

  1. Test runner with coverage by nicklane 5 years, 2 months ago
  2. Class based generic views that automatically check permissions by humphreymurray 2 years, 5 months ago
  3. Deep package test runner by eternicode 2 years, 3 months ago
  4. Syntax highlighting for tracebacks during tests by jezdez 10 months ago
  5. SASS/SCSS include template tag. by bryanhelmig 1 year, 4 months ago

Comments

(Forgotten your password?)