Modernizing PyThon Projec
This commit is contained in:
parent
b8848c8303
commit
55d0d1a105
51 changed files with 157 additions and 47 deletions
14
Makefile
14
Makefile
|
|
@ -6,4 +6,16 @@ build:
|
|||
|
||||
.PHONY: test
|
||||
test:
|
||||
cd src/ && pytest tests/ -vv
|
||||
uv run pytest tests/ -vv
|
||||
|
||||
.PHONY: sync
|
||||
sync:
|
||||
uv sync --dev
|
||||
|
||||
.PHONY: lint
|
||||
lint:
|
||||
uv run ruff check src/ tests/
|
||||
|
||||
.PHONY: format
|
||||
format:
|
||||
uv run ruff format src/ tests/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue