python - nose get list of test without running them -
is there way list of tests recognized nose, without running them?
according doc --collect-only enable collect-only: collect , output test names only, don't run tests. [collect_only]
however when nosetests --collect-only
get:
ran 101 tests in 0.642s ok
how can names tests?
try -v
option:
nosetests -v --collect-only
if you're trying debug how nose finds tests, go -vv
Comments
Post a Comment