mirror of
https://github.com/ivuorinen/aeonview.git
synced 2026-03-13 14:58:33 +00:00
* Initial plan * feat: migrate to uv-managed project Co-authored-by: ivuorinen <11024+ivuorinen@users.noreply.github.com> * fix: align Python version in pyproject.toml and CI setup-uv config Co-authored-by: ivuorinen <11024+ivuorinen@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: ivuorinen <11024+ivuorinen@users.noreply.github.com>
20 lines
330 B
Makefile
20 lines
330 B
Makefile
.PHONY: install format lint test check clean
|
|
|
|
install:
|
|
@uv sync --all-groups
|
|
|
|
format:
|
|
@uv run ruff format .
|
|
|
|
lint:
|
|
@uv run ruff check .
|
|
|
|
test:
|
|
@uv run pytest --cov=aeonview --cov-report=term-missing
|
|
|
|
check: lint test
|
|
|
|
clean:
|
|
@find . -type d -name '__pycache__' -exec rm -r {} +
|
|
@rm -rf .pytest_cache .coverage htmlcov .venv
|