-
Book Overview & Buying
-
Table Of Contents
Flask Framework Cookbook
By :
In the previous recipes, test writing was covered, but there is an important aspect to testing called coverage. Coverage determines how much of our code has been covered by the tests. The higher the percentage of coverage, the better our tests (although it's not the only criterion for good tests). In this recipe, we will check the code coverage of our application.
Remember that 100 percent test coverage does not mean that the code is flawless. However, in any case, it is better than having no tests or lower coverage. Anything that is not tested is broken.
We will use a library called coverage for this recipe. The following is the installation command:
$ pip install coverage
The simplest way of getting the coverage details is to use the command line. Simply run the following command:
$ coverage run –source=../<Folder name of application> --omit=app_tests.py,run.py app_tests.py
Here, --source indicates the directories...
Change the font size
Change margin width
Change background colour