The code listings in this book can be found under chapter08 directory at https://github.com/PacktPublishing/Hands-On-Enterprise-Application-Development-with-Python.
The code samples related to the unit testing and functional testing for the bugzot application developed in chapter 6, Example – Building BugZot, can be found under the chapter06 directory.
The code samples can be cloned by running the following command:
git clone https://github.com/PacktPublishing/Hands-On-Enterprise-Application-Development-with-Python
This includes the instructions regarding how to run the code. In addition to that, this chapter requires the installation of a Python library, which allows us to simplify the writing of our test code. The library and all the related dependencies can be installed by running the following command:
pip install -r requirements.txt...