An approach to explore the possibilities of test driven development techniques
First, initiate the configuration for the project setup:
python setup.py develop
Activate your venv and install dependencies:
python -m venv .venv
source .venv/bin/activate
# load project dependencies
pip install -r requirements.txtThen you can run tests by doing:
pytest