October 2016
Intermediate to advanced
418 pages
9h 52m
English
In this chapter, we will configure, write, and execute unit tests and learn a few things related to deployment. We will:
We will use nose2 to make it easier to discover and run unit tests. We will measure test coverage, and therefore, we will install the necessary package to allow us to run coverage with nose2. First, we will install the nose2 and cov-core packages in our virtual environment. The cov-core package will allow us to measure test coverage with nose2. Then, we will create ...