stackchain-dashboard/tests/test_readme.py
timmy bcf1a5d5a0
All checks were successful
CI / lint (pull_request) Successful in 9s
CI / build-frontend (pull_request) Successful in 6s
docs: audit release worker instructions (#19)
2026-08-04 15:02:15 +00:00

13 lines
295 B
Python

from pathlib import Path
README = Path(__file__).parents[1] / "README.md"
def test_release_worker_instructions_use_direct_agent_execution():
text = README.read_text()
assert "codex" not in text.lower()
assert "RELEASE_AGENT_COMMAND=true" in text
assert "--issue 19" in text