We use the PyTest framework for our unit tests.
PyTest should come installed with Anaconda. If you do not have PyTest installed, it can be installed with the following command:
pip install -U pytest
To run all unit tests, use the following command in the project directory:
pytest
If you want additional information of each of the unit test, use the following command instead:
pytest -v