mirror of
https://github.com/pewdiepie-archdaemon/odysseus.git
synced 2026-08-15 07:39:21 +00:00
35 lines
1 KiB
Python
35 lines
1 KiB
Python
"""Regression coverage for authoritative Python CI validation."""
|
|
|
|
import re
|
|
from pathlib import Path
|
|
|
|
|
|
_WORKFLOW = (
|
|
Path(__file__).resolve().parent.parent / ".github" / "workflows" / "ci.yml"
|
|
)
|
|
|
|
|
|
def _indented_block(text: str, heading: str, indent: int) -> str:
|
|
pattern = re.compile(
|
|
rf"(?ms)^{' ' * indent}{re.escape(heading)}:\n"
|
|
rf"(?P<body>(?:(?:{' ' * (indent + 2)}.*|\s*)\n)*)"
|
|
)
|
|
match = pattern.search(text)
|
|
assert match is not None, f"missing {heading!r} block"
|
|
return match.group(0)
|
|
|
|
|
|
def test_ci_runs_on_integrated_dev_pushes():
|
|
workflow = _WORKFLOW.read_text()
|
|
push = _indented_block(workflow, "push", 2)
|
|
|
|
assert re.search(r"(?m)^ branches:\s*\[main,\s*dev\]\s*$", push)
|
|
assert "paths-ignore:" not in push
|
|
|
|
|
|
def test_python_tests_are_authoritative():
|
|
workflow = _WORKFLOW.read_text()
|
|
python_tests = _indented_block(workflow, "python-tests", 2)
|
|
|
|
assert "python -m pytest -q" in python_tests
|
|
assert "continue-on-error:" not in python_tests
|