mirror of
https://github.com/exo-explore/exo.git
synced 2025-12-23 14:17:58 -05:00
18 lines
260 B
Makefile
18 lines
260 B
Makefile
fmt:
|
|
uv run ruff format src
|
|
|
|
lint:
|
|
uv run ruff check --fix src
|
|
|
|
test:
|
|
uv run pytest src
|
|
|
|
check:
|
|
uv run basedpyright --project pyproject.toml
|
|
|
|
sync:
|
|
uv sync --all-packages
|
|
|
|
sync-clean:
|
|
uv sync --all-packages --force-reinstall --no-cache
|