0 votes
in Python by
What is NOSE in python?

1 Answer

0 votes
by

nose is another unit testing module in Python.

nose makes testing easier by extending unittest framework.

nose can be used to run automated tests and also the tests written in other frameworks like unittest.

nose is available as a third party library and can be installed using pip command as shown below.

pip install nose

Successful installation of nose can be verified by running the below command.

nosetests -V

Related questions

0 votes
asked Jul 14, 2020 in Python by GeorgeBell
+1 vote
asked Jul 16, 2020 in Python by GeorgeBell
...