testing - Display list of all tests in a Django project -
is there easy way list of tests in django project without running tests themselves? hoping ./manage.py test --list
.
in opinion, more correct way use actual tool running tests. e.g. in case of nose:
./manage.py test <app> --verbosity 2 --collect-only
fyi, py.test has --collectonly
option print tests instead of executing.
also see:
Comments
Post a Comment