Run unit tests
poetry run pytest tests
Run end to end tests
poetry run pytest e2e
Check formatting and linting
poetry run ruff check
poetry run mypy src tests e2e
Format and fix failing lints as possible
poetry run ruff format
poetry run ruff check --fix