Skip to content

Testing and Quality

Install development dependencies:

pip install -e ".[dev]"

Run tests and checks:

pytest
pytest tests/unit -m unit
pytest tests/smoke -m smoke
ruff check policyflux/
mypy policyflux/

Validate docs:

pip install -r requirements-docs.txt
mkdocs build --strict
mkdocs serve