Clean Architecture with Python, Published by Packt
Create a virtual environment (with python >= 3.13)
> python -m venv .venv
> source .venv/bin/activate
Install dependencies
> pip install --upgrade pip && pip install -r requirements.txt
Run tests
## Go to the chapter folder
> cd Chapter_5/TodoApp
## Run tests
> pytest