Files
trailofbits-buttercup/program-model/justfile
T
2025-07-09 16:31:37 +00:00

24 lines
461 B
Makefile

all: && sync reformat lint test
sync:
uv sync --all-extras
reformat:
uv run ruff format
uv run ruff check --fix
lint:
uv run ruff format --check
uv run ruff check
uv run mypy
test:
# To debug
# uv run pytest -svv --log-cli-level=DEBUG --runintegration
# To save unit test results
# PYTEST_DEBUG_TEMPROOT="/crs_scratch/" uv run pytest -svv --runintegration
# To run tests
uv run pytest -svv --runintegration