11 lines
108 B
Makefile
11 lines
108 B
Makefile
|
|
.PHONY: test lint install
|
||
|
|
|
||
|
|
test:
|
||
|
|
uv run pytest
|
||
|
|
|
||
|
|
lint:
|
||
|
|
uv run ruff check .
|
||
|
|
|
||
|
|
install:
|
||
|
|
uv tool install -e .
|