A test-driven Python project with secure development environment setup.
- Create and activate virtual environment:
python -m venv .venv
source .venv/bin/activate # Linux/Mac
.venv\Scripts\activate # Windows- Install dependencies:
pip install -r requirements.txt- Run tests:
python -m pytest tests/