A curated set of reusable Python scripts that automate common development and operational tasks. Each script is designed to be lightweight, well‑documented, and easy to integrate into CI pipelines or local workflows.
- Python version: 3.13.3
- Pytest
python -m venv .venv
Activate:
Windows: .venv\Scripts\activate
MacOS/Linux source .venv/bin/activate
pip install -e . pip install pytest
Alternatively, you can use Docker:
docker build --target test -t myapp-test . docker run --rm myapp-test
pytest
or
.venv/bin/python -m pytest