10 lines
87 B
Makefile
10 lines
87 B
Makefile
|
|
all: check test
|
||
|
|
|
||
|
|
.PHONY: check
|
||
|
|
check:
|
||
|
|
uvx ty check
|
||
|
|
|
||
|
|
.PHONY: test
|
||
|
|
test:
|
||
|
|
uv run pytest
|