text2vector / Makefile
emilbm's picture
init project
5a5e912
raw
history blame contribute delete
329 Bytes
APP_DIR := $(CURDIR)/app
TESTS_DIR := $(CURDIR)/tests
format:
uv run black $(APP_DIR) $(TESTS_DIR)/*.py
uv run ruff check $(APP_DIR) $(TESTS_DIR) --fix
lint:
uv run black --check $(APP_DIR) $(TESTS_DIR)/*.py
uv run ruff check $(APP_DIR) $(TESTS_DIR)
uv run mypy $(APP_DIR) $(TESTS_DIR)
test:
uv run pytest ${TESTS_DIR}