Files
goose/justfile
2024-09-04 11:44:34 -07:00

20 lines
442 B
Makefile

# This is the default recipe when no arguments are provided
[private]
default:
@just --list --unsorted
test *FLAGS:
uv run pytest tests -m "not integration" {{FLAGS}}
integration *FLAGS:
uv run pytest tests -m integration {{FLAGS}}
format:
uvx ruff check . --fix
uvx ruff format .
coverage *FLAGS:
uv run coverage run -m pytest tests -m "not integration" {{FLAGS}}
uv run coverage report
uv run coverage lcov -o lcov.info