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

Related questions

0 votes
asked Jun 30, 2020 in Python by GeorgeBell
0 votes
asked Jul 2, 2020 in Python by GeorgeBell
...