This project serves as a starter template for building python based projects.
python3 -m venv venvActivating the environment ensures that any packages you install will be added only to this project.
- On macOS/Linux:
source venv/bin/activate - On Windows:
venv\Scripts\activate
pip install -r requirements.txtYou run all the testcases with
pytest