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

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -