Makefile
1 .PHONY: sync sync-dev test test-k8s test-sandbox test-manager test-code lint fmt 2 3 sync: 4 uv sync 5 6 sync-dev: 7 uv sync --group dev 8 9 test: 10 uv run pytest 11 12 test-kubernetes-mini: 13 uv run pytest \ 14 --ignore=tests/test_code_interpreter_e2e.py \ 15 --ignore=tests/test_code_interpreter_e2e_sync.py 16 17 test-sandbox: 18 uv run pytest tests/test_sandbox_e2e.py 19 20 test-manager: 21 uv run pytest tests/test_sandbox_manager_e2e.py 22 23 test-code: 24 uv run pytest tests/test_code_interpreter_e2e.py 25 26 lint: 27 uv run ruff check tests 28 29 fmt: 30 uv run ruff format tests