2025-03-17 07:24:48 +01:00
|
|
|
.PHONY: install
|
|
|
|
install:
|
|
|
|
uv sync --group dev --group test
|
|
|
|
pip install -e .
|
|
|
|
pre-commit install
|
|
|
|
|
2025-02-05 18:41:31 +01:00
|
|
|
.PHONY: test
|
|
|
|
test:
|
2025-03-17 07:24:48 +01:00
|
|
|
uv run pytest -x src/jinjax tests
|
2025-02-05 18:41:31 +01:00
|
|
|
|
|
|
|
.PHONY: lint
|
|
|
|
lint:
|
2025-03-17 07:24:48 +01:00
|
|
|
uv run ruff check src/jinjax tests
|
2025-02-05 18:41:31 +01:00
|
|
|
|
|
|
|
.PHONY: coverage
|
|
|
|
coverage:
|
2025-03-17 07:24:48 +01:00
|
|
|
uv run pytest --cov-config=pyproject.toml --cov-report html --cov jinjax src/jinjax tests
|
2025-02-05 18:41:31 +01:00
|
|
|
|
|
|
|
.PHONY: types
|
|
|
|
types:
|
2025-03-17 07:24:48 +01:00
|
|
|
uv run pyright src/jinjax
|