harlequin-odbc/Makefile
Branch Vincent 463e6f9330
feat: add support for python 3.14 (#22)
* feat: add support for python 3.14

* chore: migrate to poetry 2

* fix: more tweaks for py314; use uv

---------

Co-authored-by: Ted Conbeer <tconbeer@users.noreply.github.com>
2025-10-29 13:55:57 -06:00

24 lines
340 B
Makefile

.PHONY: check
check:
uv run ruff format .
uv run ruff check . --fix
uv run mypy
uv run pytest
.PHONY: init
init:
docker-compose up -d
.PHONY: clean
clean:
docker-compose down
.PHONY: serve
serve:
uv run harlequin -P None -a odbc "${ODBC_CONN_STR}"
.PHONY: lint
lint:
uv run ruff format .
uv run ruff check . --fix
uv run mypy