The app is tested using the TestCase class of Django. In order to start tests launch
python3 manage.py testIf you want to measure the test coverage you can launch
coverage run --source='.' manage.py testThe command executes tests and analyzes how much they cover the code. In order to generate a report you can write
coverage reportor
coverage htmlto visualize as html.