diff --git a/Makefile b/Makefile index 8c8c211..d063288 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ SHELL := /bin/bash init: python3 -m venv .venv poetry install --with dev - pre-commit install + poetry run pre-commit install poetry env info @echo "Created virtual environment" @@ -11,8 +11,8 @@ test: poetry run pytest --cov=src/ --cov-report=term-missing --no-cov-on-fail format: - ruff format - ruff check --fix + poetry run ruff format + poetry run ruff check --fix poetry run mypy src/ tests/ --ignore-missing-imports clean: