mirror of
https://github.com/ivuorinen/aeonview.git
synced 2026-02-12 18:47:01 +00:00
feat: full upgrade to python3, tests, etc.
This commit is contained in:
19
Makefile
Normal file
19
Makefile
Normal file
@@ -0,0 +1,19 @@
|
||||
.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
|
||||
Reference in New Issue
Block a user