문제

Nose and django-nose installed, when the following is ran:

./manage.py test --collect-only

The following is output:

nosetests --collect-only --verbosity=1
Creating test database for alias 'default'...
.
----------------------------------------------------------------------
Ran 1 test in 0.000s

OK
Destroying test database for alias 'default'...

Why is collect-only running the tests instead of outputting their names?

도움이 되었습니까?

해결책

Increasing the verbosity seems to produce desired results:

./manage.py test --collect-only --verbosity=2

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top