Files
kontor/kontor-scripts/Makefile
T
2025-04-25 01:19:47 +02:00

20 lines
230 B
Makefile

.PHONY: clean
clean:
find . -name '*.py[co]' -delete
.PHONY: test
test:
python -m pytest \
-v \
--cov=kontor \
--cov-report=term \
--cov-report=html:coverage-report \
tests/
.PHONY: build
build:
uv sync
uv build