10 lines
112 B
Makefile
10 lines
112 B
Makefile
|
|
.PHONY: test check
|
||
|
|
|
||
|
|
test:
|
||
|
|
uv run pytest
|
||
|
|
|
||
|
|
check:
|
||
|
|
uv run pytest
|
||
|
|
git diff --check
|
||
|
|
python3 -m compileall -q src
|