diff --git a/Makefile b/Makefile index d644c83..7345cda 100644 --- a/Makefile +++ b/Makefile @@ -1,15 +1,12 @@ -.PHONY: install format lint type test verify image -install: - python -m pip install -e '.[dev]' -format: - ruff format . -lint: +.PHONY: check test run + +check: ruff format --check . ruff check . -type: - mypy src + mypy app + test: - pytest -q -verify: lint type test -image: - docker build -t endpoint-monitor . + pytest + +run: + uvicorn app.main:app --reload