Open a new terminal interface, and simply run:
pytest
if you want get coverage report, run
pytest --cov=./app
more complicated version
pytest --cov-report html \
--cov-report annotate \
--cov=./apppytest --cov-report html --cov-report annotate --cov=./app