mirror of
https://github.com/ivuorinen/aeonview.git
synced 2026-01-26 11:44:03 +00:00
20 lines
314 B
Makefile
20 lines
314 B
Makefile
.PHONY: install format lint test check clean
|
|
|
|
install:
|
|
@pip install -r requirements.txt
|
|
|
|
format:
|
|
@ruff format .
|
|
|
|
lint:
|
|
@ruff check .
|
|
|
|
test:
|
|
@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
|