fix: relax harlequin dependency; update other deps
This commit is contained in:
parent
0519a1cf9a
commit
ebfbf8f6e3
6 changed files with 675 additions and 557 deletions
23
Makefile
23
Makefile
|
|
@ -1,9 +1,24 @@
|
|||
.PHONY: check
|
||||
check:
|
||||
ruff format .
|
||||
ruff check . --fix
|
||||
mypy
|
||||
pytest
|
||||
|
||||
.PHONY: init
|
||||
init:
|
||||
docker-compose up -d
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
docker-compose down
|
||||
|
||||
.PHONY: serve
|
||||
serve:
|
||||
harlequin -a odbc "${ODBC_CONN_STR}"
|
||||
harlequin -P None -a odbc "${ODBC_CONN_STR}"
|
||||
|
||||
.PHONY: lint
|
||||
lint:
|
||||
black .
|
||||
ruff . --fix
|
||||
mypy
|
||||
ruff format .
|
||||
ruff check . --fix
|
||||
mypy
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue