2010-11-23 10 views
7

ile test testleri coverage ile django testlerini çalıştırmaya çalışıyorum. İyi çalışıyor, ancak sınıf tanımlarını algılamıyor çünkü kapsama başlamadan önce tanımlanmışlar.django:

import sys 
import os 
import logging 

from django.conf import settings 

MAIN_TEST_RUNNER = 'django.test.simple.run_tests' 

if settings.COMPUTE_COVERAGE: 
    try: 
     import coverage 
    except ImportError: 
     print "Warning: coverage module not found: test code coverage will not be computed" 
    else: 
     coverage.exclude('def __unicode__') 
     coverage.exclude('if DEBUG') 
     coverage.exclude('if settings.DEBUG') 
     coverage.exclude('raise') 
     coverage.erase() 
     coverage.start() 
     MAIN_TEST_RUNNER = 'django-test-coverage.runner.run_tests' 

def run_tests(test_labels, verbosity=1, interactive=True, extra_tests=[]): 
    # start coverage - jeśli włączmy już tutaj, a wyłączymy w django-test-coverage, 
    # to dostaniemy dobrze wyliczone pokrycie dla instrukcji wykonywanych przy 
    # imporcie modułów 
    test_path = MAIN_TEST_RUNNER.split('.') 
    # Allow for Python 2.5 relative paths 
    if len(test_path) > 1: 
     test_module_name = '.'.join(test_path[:-1]) 
    else: 
     test_module_name = '.' 
    test_module = __import__(test_module_name, {}, {}, test_path[-1]) 
    test_runner = getattr(test_module, test_path[-1]) 
    failures = test_runner(test_labels, verbosity=verbosity, interactive=interactive) 
    if failures: 
     sys.exit(failures) 

ne yapabilirim, ayrıca kapsama dahil sınıfları için: Ben kapsama hesaplamak zaman ben kullandıkları test koşucu aşağıdaki mı? Aksi halde, oldukça düşük bir kapsama sahibim ve yerlerin gerçekten kapsanması gereken yerleri kolayca tespit edemiyorum.

cevap

8

Yapılacak en basit şey test koşucusunu yürütmek için kapsama kullanmaktır.

coverage run runner.py 

Bir .coveragerc dosya halinde dört dışlamaları koyabilirsiniz ve herhangi tutmadan, senin kapsama kodunun tüm avantajlarına sahip olacaksınız: En koşucu "runner.py" denir, o zaman kullanmak kapsama kodunuz.