0 votes
in Python by
How does Test Discovery with nose works?

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 Jul 2, 2020 in Python by GeorgeBell
0 votes
asked Jul 2, 2020 in Python by GeorgeBell
...