
.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

