perf(pre-commit): run python, dashboard, and gen-api checks concurrently

This commit is contained in:
mateo-berri 2026-08-04 21:18:00 -07:00
parent 31a86daa85
commit 2f36625e7f
2 changed files with 192 additions and 8 deletions

View file

@ -95,17 +95,25 @@ bootstrap_hint() {
echo " Fix: make bootstrap" >&2
}
if [ -n "$litellm_py_files" ]; then
python_checks() {
local rc=0
echo "pre-commit: linting Python (make lint)"
make lint || { echo "✗ Python lint failed. Fix the reds above, then re-run make pre-commit." >&2; status=1; }
make lint || { echo "✗ Python lint failed. Fix the reds above, then re-run make pre-commit." >&2; rc=1; }
# `make lint` format-checks files in origin/base...HEAD, which at pre-commit time
# predates the staged change, so format-check the staged litellm files directly to
# cover a brand-new commit before it lands.
if [ -n "$fmt_files" ]; then
echo "pre-commit: ruff format --check (staged litellm files)"
printf '%s\n' "$fmt_files" | xargs uv run --no-sync ruff format --check --exclude '/enterprise/' \
|| { echo "✗ Unformatted staged files. Fix with: make format, then re-stage." >&2; status=1; }
|| { echo "✗ Unformatted staged files. Fix with: make format, then re-stage." >&2; rc=1; }
fi
return $rc
}
if [ -n "$litellm_py_files" ]; then
python_log=$(mktemp)
python_checks > "$python_log" 2>&1 &
python_pid=$!
fi
if [ -n "$e2e_py_files" ] && [ -z "$litellm_py_files" ]; then
@ -119,18 +127,24 @@ if [ -n "$e2e_py_files" ]; then
|| { echo "✗ Raw HTTP client import in tests/e2e. Route the call through tests/e2e/e2e_http.py, then re-run make pre-commit." >&2; status=1; }
fi
if [ -n "$ui_prettier_files" ] || [ -n "$ui_eslint_files" ]; then
dashboard_checks() {
echo "pre-commit: linting dashboard (prettier + eslint + lint budgets)"
if [ ! -d ui/litellm-dashboard/node_modules ]; then
echo "✗ ui/litellm-dashboard/node_modules is missing; dashboard lint cannot run." >&2
bootstrap_hint
status=1
else
lint_dashboard || { echo "✗ Dashboard lint failed. See above; format with: (cd ui/litellm-dashboard && npm run format)." >&2; status=1; }
return 1
fi
lint_dashboard || { echo "✗ Dashboard lint failed. See above; format with: (cd ui/litellm-dashboard && npm run format)." >&2; return 1; }
}
if [ -n "$ui_prettier_files" ] || [ -n "$ui_eslint_files" ]; then
dash_log=$(mktemp)
dashboard_checks > "$dash_log" 2>&1 &
dash_pid=$!
fi
if [ -n "$spec_files" ]; then
genapi_checks() {
local status=0
echo "pre-commit: checking dashboard API types are in sync (npm run gen:api)"
# gen-api-types.mjs imports litellm.proxy.proxy_server, which needs the proxy deps
# and an up-to-date Prisma client; check-ui-api-types.yml installs those and runs
@ -156,6 +170,26 @@ if [ -n "$spec_files" ]; then
echo "✗ Could not regenerate API types (npm run gen:api failed)." >&2
status=1
fi
return $status
}
if [ -n "$spec_files" ]; then
gen_log=$(mktemp)
genapi_checks > "$gen_log" 2>&1 &
gen_pid=$!
fi
if [ -n "${python_pid:-}" ]; then
wait "$python_pid" || status=1
cat "$python_log"; rm -f "$python_log"
fi
if [ -n "${dash_pid:-}" ]; then
wait "$dash_pid" || status=1
cat "$dash_log"; rm -f "$dash_log"
fi
if [ -n "${gen_pid:-}" ]; then
wait "$gen_pid" || status=1
cat "$gen_log"; rm -f "$gen_log"
fi
exit $status

View file

@ -0,0 +1,150 @@
import os
import subprocess
from pathlib import Path
import pytest
ROOT = Path(__file__).resolve().parents[2]
SCRIPT = ROOT / "scripts" / "pre_commit_lint.sh"
BARRIER_HELPER = """barrier_sync() {
touch "$STUB_BARRIER_DIR/$1.started"
for other in $2; do
tries=0
while [ ! -f "$STUB_BARRIER_DIR/$other.started" ]; do
tries=$((tries + 1))
if [ "$tries" -gt 100 ]; then
echo "barrier timeout: $1 never saw $other start" >&2
exit 1
fi
sleep 0.1
done
done
}
"""
MAKE_STUB = """#!/bin/sh
. "$STUB_BIN/barrier.sh"
case "$*" in
lint)
[ "${STUB_FAIL:-}" = "make-lint" ] && exit 1
[ -n "${STUB_BARRIER_DIR:-}" ] && barrier_sync python "dashboard genapi"
;;
esac
exit 0
"""
NPX_STUB = """#!/bin/sh
. "$STUB_BIN/barrier.sh"
case "$*" in
prettier*)
[ -n "${STUB_BARRIER_DIR:-}" ] && barrier_sync dashboard "python genapi"
;;
"eslint --no-warn-ignored"*)
[ "${STUB_FAIL:-}" = "eslint" ] && exit 1
;;
esac
exit 0
"""
UV_STUB = """#!/bin/sh
. "$STUB_BIN/barrier.sh"
case "$*" in
*orjson*)
[ -n "${STUB_BARRIER_DIR:-}" ] && barrier_sync genapi "python dashboard"
;;
esac
exit 0
"""
NPM_STUB = """#!/bin/sh
case "$*" in
"run gen:api")
[ "${STUB_FAIL:-}" = "gen-api" ] && exit 1
;;
esac
exit 0
"""
NODE_STUB = """#!/bin/sh
exit 0
"""
def _write_executable(path: Path, body: str) -> None:
path.write_text(body)
path.chmod(0o755)
def _sandbox(tmp_path: Path) -> tuple[Path, Path]:
repo = tmp_path / "repo"
(repo / "litellm" / "proxy").mkdir(parents=True)
(repo / "litellm" / "foo.py").write_text("x = 1\n")
(repo / "litellm" / "proxy" / "spec.py").write_text("y = 2\n")
dashboard = repo / "ui" / "litellm-dashboard"
(dashboard / "src").mkdir(parents=True)
(dashboard / "node_modules").mkdir()
(dashboard / "src" / "app.ts").write_text("export {}\n")
subprocess.run(["git", "init", "-q"], cwd=repo, check=True)
subprocess.run(["git", "add", "."], cwd=repo, check=True)
bin_dir = tmp_path / "bin"
bin_dir.mkdir()
(bin_dir / "barrier.sh").write_text(BARRIER_HELPER)
_write_executable(bin_dir / "make", MAKE_STUB)
_write_executable(bin_dir / "npx", NPX_STUB)
_write_executable(bin_dir / "uv", UV_STUB)
_write_executable(bin_dir / "npm", NPM_STUB)
_write_executable(bin_dir / "node", NODE_STUB)
return repo, bin_dir
def _run(repo: Path, bin_dir: Path, extra_env: dict[str, str]) -> subprocess.CompletedProcess[str]:
env = {
"PATH": os.pathsep.join([str(bin_dir), "/usr/bin", "/bin"]),
"HOME": str(repo.parent),
"STUB_BIN": str(bin_dir),
**extra_env,
}
return subprocess.run(
[str(SCRIPT)],
cwd=repo,
capture_output=True,
text=True,
env=env,
timeout=120,
)
def test_python_dashboard_and_gen_api_blocks_run_concurrently_with_grouped_output(tmp_path: Path) -> None:
repo, bin_dir = _sandbox(tmp_path)
barrier_dir = tmp_path / "barrier"
barrier_dir.mkdir()
proc = _run(repo, bin_dir, {"STUB_BARRIER_DIR": str(barrier_dir)})
assert proc.returncode == 0, proc.stdout + proc.stderr
assert "barrier timeout" not in proc.stdout + proc.stderr
python_at = proc.stdout.index("linting Python")
dashboard_at = proc.stdout.index("linting dashboard")
gen_api_at = proc.stdout.index("API types")
assert python_at < dashboard_at < gen_api_at
def test_all_blocks_passing_exits_zero(tmp_path: Path) -> None:
repo, bin_dir = _sandbox(tmp_path)
proc = _run(repo, bin_dir, {})
assert proc.returncode == 0, proc.stdout + proc.stderr
@pytest.mark.parametrize(
("fail", "message"),
[
("make-lint", "Python lint failed"),
("eslint", "Dashboard lint failed"),
("gen-api", "npm run gen:api failed"),
],
)
def test_a_failing_block_fails_the_whole_run(tmp_path: Path, fail: str, message: str) -> None:
repo, bin_dir = _sandbox(tmp_path)
proc = _run(repo, bin_dir, {"STUB_FAIL": fail})
assert proc.returncode == 1
assert message in proc.stdout + proc.stderr