我通过简单安装安装了django_test_coverage并简单地添加了该行
TEST_RUNNER = 'django_test_coverage.runner.CoverageTestSuiteRunner'
到我的设置(Django 1.4)
但是当我运行测试时
python manage.py test myapp
我正进入(状态:
ImportError:没有名为 django_test_coverage.runner 的模块
我通过简单安装安装了django_test_coverage并简单地添加了该行
TEST_RUNNER = 'django_test_coverage.runner.CoverageTestSuiteRunner'
到我的设置(Django 1.4)
但是当我运行测试时
python manage.py test myapp
我正进入(状态:
ImportError:没有名为 django_test_coverage.runner 的模块
PyPi 上的包坏了。您不能使用easy_install
或安装它pip
。
https://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