mirror of
https://github.com/ivuorinen/aeonview.git
synced 2026-03-14 09:58:50 +00:00
feat: migrate to uv-managed project (#10)
* 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>
This commit is contained in:
10
Makefile
10
Makefile
@@ -1,19 +1,19 @@
|
||||
.PHONY: install format lint test check clean
|
||||
|
||||
install:
|
||||
@pip install -r requirements.txt
|
||||
@uv sync --all-groups
|
||||
|
||||
format:
|
||||
@ruff format .
|
||||
@uv run ruff format .
|
||||
|
||||
lint:
|
||||
@ruff check .
|
||||
@uv run ruff check .
|
||||
|
||||
test:
|
||||
@pytest --cov=aeonview --cov-report=term-missing
|
||||
@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
|
||||
@rm -rf .pytest_cache .coverage htmlcov .venv
|
||||
|
||||
Reference in New Issue
Block a user