-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
43 lines (31 loc) · 1.68 KB
/
Makefile
File metadata and controls
43 lines (31 loc) · 1.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
.PHONY: test lint format check smoke bench-local bench-cloud figures demo paper arxiv clean
# ── Development ──────────────────────────────────────────────────────
test:
uv run pytest tests/ -x -q
lint:
uv run ruff check src/ tests/ scripts/
format:
uv run ruff format src/ tests/ scripts/
check: lint test
# ── Benchmarking ─────────────────────────────────────────────────────
smoke:
uv run python scripts/run_benchmark.py --smoke
bench-local:
uv run python scripts/run_benchmark.py --local-only
bench-cloud:
uv run python scripts/run_benchmark.py --cloud-only --tasks 500
# ── Analysis & Visualization ─────────────────────────────────────────
figures:
uv run python scripts/run_benchmark.py --figures-only results/run_*/results_*.json
demo:
uv run python demo/app.py
# ── Paper ────────────────────────────────────────────────────────────
paper:
tectonic paper/main.tex
arxiv:
bash scripts/bundle_arxiv.sh
# ── Cleanup ──────────────────────────────────────────────────────────
clean:
find . -type d -name __pycache__ -exec rm -rf {} + 2>/dev/null || true
find . -name "*.pyc" -delete 2>/dev/null || true
rm -rf .cache htmlcov .coverage