feat: add Quant OS public status console

This commit is contained in:
2026-07-26 14:32:52 +08:00
parent e5911ca454
commit 00efeb7ec2
12 changed files with 4443 additions and 9 deletions
+8 -2
View File
@@ -4,7 +4,7 @@ SMOKE_DIR := artifacts/local-smoke
RESEARCH_DIR := artifacts/research-smoke
PARITY_REPORT := artifacts/mock-parity/report.json
.PHONY: test bundle smoke verify research research-verify parity parity-verify doctor notebook-check notebook-smoke local
.PHONY: test bundle smoke verify research research-verify parity parity-verify doctor status status-check notebook-check notebook-smoke local
test:
PYTHONPATH=$(PROJECT_PYTHONPATH) $(PYTHON) -m unittest discover -s tests -p '*.py' -q
@@ -33,10 +33,16 @@ parity-verify:
doctor:
PYTHONPATH=$(PROJECT_PYTHONPATH) $(PYTHON) tools/capability_probe.py
status:
$(PYTHON) tools/build_public_status.py
status-check:
$(PYTHON) tools/build_public_status.py --check
notebook-check:
$(PYTHON) tools/run_colab_notebook.py notebooks/quant_os_colab.ipynb
notebook-smoke:
$(PYTHON) tools/run_colab_notebook.py notebooks/quant_os_colab.ipynb --execute
local: test bundle smoke verify research research-verify parity parity-verify doctor notebook-check notebook-smoke
local: test bundle smoke verify research research-verify parity parity-verify doctor status-check notebook-check notebook-smoke