mirror of
https://github.com/aljazceru/goose.git
synced 2025-12-28 03:24:21 +01:00
Co-authored-by: Lifei Zhou <lifei@squareup.com> Co-authored-by: Mic Neale <micn@tbd.email> Co-authored-by: Lily Delalande <ldelalande@squareup.com> Co-authored-by: Bradley Axen <baxen@squareup.com> Co-authored-by: Andy Lane <alane@squareup.com> Co-authored-by: Elena Zherdeva <ezherdeva@squareup.com> Co-authored-by: Zaki Ali <zaki@squareup.com> Co-authored-by: Salman Mohammed <smohammed@squareup.com>
20 lines
434 B
Makefile
20 lines
434 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:
|
|
ruff check . --fix
|
|
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
|