1
0
Fork 0
jinjax/Makefile
Daniel Baumann accdada880
Merging upstream version 0.52+dfsg.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-03-17 07:24:48 +01:00

21 lines
376 B
Makefile

.PHONY: install
install:
uv sync --group dev --group test
pip install -e .
pre-commit install
.PHONY: test
test:
uv run pytest -x src/jinjax tests
.PHONY: lint
lint:
uv run ruff check src/jinjax tests
.PHONY: coverage
coverage:
uv run pytest --cov-config=pyproject.toml --cov-report html --cov jinjax src/jinjax tests
.PHONY: types
types:
uv run pyright src/jinjax