Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ 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"

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:
Expand Down