0 votes
in Python by
How to do Test Discovery with nose in Python?

1 Answer

0 votes
by
Test Discovery process is simpler with nose than with unittest.

No need of using discover option.

Simply use the command shown below to run all the tests present in Project2 folder.

nosetests -v

Output

..

----------------------------

Ran 2 tests in 0.007s

OK
...