2

我通过简单安装安装了django_test_coverage并简单地添加了该行

TEST_RUNNER = 'django_test_coverage.runner.CoverageTestSuiteRunner'

到我的设置(Django 1.4)

但是当我运行测试时

python manage.py test myapp

我正进入(状态:

ImportError:没有名为 django_test_coverage.runner 的模块

4

1 回答 1

3

PyPi 上的包坏了。您不能使用easy_install或安装它piphttps://github.com/srosro/django-test-coverage/issues/7

如果您从源代码安装它可以工作:

git clone git://github.com/srosro/django-test-coverage.git
cd django-test-coverage
python setup.py install
于 2013-04-28T15:39:17.780 回答