Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

List all Tests Found by Nosetest

I use nosetests to run my unittests and it works well. I want to get a list of all the tests nostests finds without actually running them. Is there a way to do that?

like image 278
Cristian Avatar asked Apr 02 '09 23:04

Cristian


1 Answers

Version 0.11.1 is currently available. You can get a list of tests without running them as follows:

nosetests -v --collect-only 
like image 105
oneself Avatar answered Oct 04 '22 06:10

oneself