[ci] Group component test output into collapsible CI log sections (#17536)

This commit is contained in:
Jesse Hills
2026-07-13 15:29:35 +12:00
committed by GitHub
parent 07460ebee4
commit 4a82b10783
2 changed files with 330 additions and 72 deletions
+60 -40
View File
@@ -88,6 +88,38 @@ def show_disk_space_if_ci(esphome_command: str) -> None:
sys.stdout.flush()
def start_log_group(title: str) -> None:
"""Begin a collapsible log group in the GitHub Actions log viewer.
Everything printed until the matching :func:`end_log_group` is folded away
by default, so the full ``esphome config``/``compile`` dump for one
configuration no longer pushes the pass/fail result thousands of lines down
the log. Outside CI this is a no-op so local runs stay plain.
Args:
title: Text shown on the (collapsed) group header line.
"""
if not os.environ.get("GITHUB_ACTIONS"):
return
# Flush so the marker is ordered correctly relative to the child process
# output that follows (the subprocess writes straight to our stdout).
sys.stdout.flush()
print(f"::group::{title}")
sys.stdout.flush()
def end_log_group() -> None:
"""Close the collapsible log group opened by :func:`start_log_group`.
Outside CI this is a no-op.
"""
if not os.environ.get("GITHUB_ACTIONS"):
return
sys.stdout.flush()
print("::endgroup::")
sys.stdout.flush()
def find_component_tests(
components_dir: Path,
component_pattern: str = "*",
@@ -383,24 +415,32 @@ def run_esphome_test(
# Build command string for display/logging
cmd_str = " ".join(cmd)
# Run command
print(f"> [{component}] [{test_name}] [{platform_with_version}]")
# Run command inside a collapsible CI log group so the full esphome output
# for this configuration can be folded away by default.
group_title = f"[{component}] [{test_name}] [{platform_with_version}]"
start_log_group(group_title)
print(f"> {group_title}")
if use_testing_mode:
print(" (using --testing-mode)")
start_time = time.time()
test_id = f"{component}.{test_name}.{platform_with_version}"
# Always close the group, even if the subprocess or disk-space reporting
# raises, so later output is never folded into the wrong CI log section.
try:
result = subprocess.run(cmd, check=False)
# Show disk space after build in CI during compile
show_disk_space_if_ci(esphome_command)
finally:
end_log_group()
success = result.returncode == 0
duration = time.time() - start_time
# Show disk space after build in CI during compile
show_disk_space_if_ci(esphome_command)
if not success and not continue_on_fail:
# Print command immediately for failed tests
# Print command immediately for failed tests. The group is already
# closed, so the failure and reproduce command stay visible.
print(f"\n{'=' * 80}")
print("FAILED - Command to reproduce:")
print(f"{'=' * 80}")
@@ -417,20 +457,6 @@ def run_esphome_test(
command=cmd_str,
test_type=esphome_command,
)
except subprocess.CalledProcessError:
duration = time.time() - start_time
# Re-raise if we're not continuing on fail
if not continue_on_fail:
raise
return TestResult(
test_id=test_id,
components=[component],
platform=platform_with_version,
success=False,
duration=duration,
command=cmd_str,
test_type=esphome_command,
)
def run_grouped_test(
@@ -534,24 +560,32 @@ def run_grouped_test(
# Build command string for display/logging
cmd_str = " ".join(cmd)
# Run command
# Run command inside a collapsible CI log group so the full esphome output
# for this grouped configuration can be folded away by default.
components_str = ", ".join(components)
print(f"> [GROUPED: {components_str}] [{platform_with_version}]")
group_title = f"[GROUPED: {components_str}] [{platform_with_version}]"
start_log_group(group_title)
print(f"> {group_title}")
print(" (using --testing-mode)")
start_time = time.time()
test_id = f"GROUPED[{','.join(components)}].{platform_with_version}"
# Always close the group, even if the subprocess or disk-space reporting
# raises, so later output is never folded into the wrong CI log section.
try:
result = subprocess.run(cmd, check=False)
# Show disk space after build in CI during compile
show_disk_space_if_ci(esphome_command)
finally:
end_log_group()
success = result.returncode == 0
duration = time.time() - start_time
# Show disk space after build in CI during compile
show_disk_space_if_ci(esphome_command)
if not success and not continue_on_fail:
# Print command immediately for failed tests
# Print command immediately for failed tests. The group is already
# closed, so the failure and reproduce command stay visible.
print(f"\n{'=' * 80}")
print("FAILED - Command to reproduce:")
print(f"{'=' * 80}")
@@ -568,20 +602,6 @@ def run_grouped_test(
command=cmd_str,
test_type=esphome_command,
)
except subprocess.CalledProcessError:
duration = time.time() - start_time
# Re-raise if we're not continuing on fail
if not continue_on_fail:
raise
return TestResult(
test_id=test_id,
components=components,
platform=platform_with_version,
success=False,
duration=duration,
command=cmd_str,
test_type=esphome_command,
)
def run_grouped_component_tests(
+238
View File
@@ -0,0 +1,238 @@
"""Unit tests for script/test_build_components.py logging helpers."""
from pathlib import Path
import sys
import pytest
# Add the script directory to the path so we can import the module under test.
sys.path.insert(0, str(Path(__file__).parent.parent.parent / "script"))
import test_build_components as tbc # noqa: E402
class _FakeCompleted:
"""Minimal stand-in for subprocess.CompletedProcess."""
def __init__(self, returncode: int) -> None:
self.returncode = returncode
@pytest.fixture
def _no_ci(monkeypatch: pytest.MonkeyPatch) -> None:
"""Ensure GITHUB_ACTIONS is unset so group markers are suppressed."""
monkeypatch.delenv("GITHUB_ACTIONS", raising=False)
@pytest.fixture
def _ci(monkeypatch: pytest.MonkeyPatch) -> None:
"""Pretend we are running inside GitHub Actions."""
monkeypatch.setenv("GITHUB_ACTIONS", "true")
def test_start_log_group_outside_ci_is_silent(
_no_ci: None, capsys: pytest.CaptureFixture[str]
) -> None:
tbc.start_log_group("hello")
assert capsys.readouterr().out == ""
def test_end_log_group_outside_ci_is_silent(
_no_ci: None, capsys: pytest.CaptureFixture[str]
) -> None:
tbc.end_log_group()
assert capsys.readouterr().out == ""
def test_start_log_group_in_ci_emits_marker(
_ci: None, capsys: pytest.CaptureFixture[str]
) -> None:
tbc.start_log_group("hello")
assert capsys.readouterr().out == "::group::hello\n"
def test_end_log_group_in_ci_emits_marker(
_ci: None, capsys: pytest.CaptureFixture[str]
) -> None:
tbc.end_log_group()
assert capsys.readouterr().out == "::endgroup::\n"
def _make_base_file(tmp_path: Path) -> Path:
base_file = tmp_path / "base.yaml"
base_file.write_text("esphome:\n name: $component_test_file\n")
return base_file
def test_run_esphome_test_wraps_output_in_group(
_ci: None,
monkeypatch: pytest.MonkeyPatch,
tmp_path: Path,
capsys: pytest.CaptureFixture[str],
) -> None:
"""A passing single-component test is bracketed by group markers."""
monkeypatch.setattr(tbc.subprocess, "run", lambda *a, **k: _FakeCompleted(0))
repo_root = Path(tbc.__file__).parent.parent
test_file = repo_root / "tests" / "components" / "foo" / "test.esp32-idf.yaml"
result = tbc.run_esphome_test(
component="foo",
test_file=test_file,
platform="esp32-idf",
platform_with_version="esp32-idf",
base_file=_make_base_file(tmp_path),
build_dir=tmp_path,
esphome_command="config",
continue_on_fail=True,
)
out = capsys.readouterr().out
assert result.success is True
assert "::group::[foo] [test] [esp32-idf]" in out
assert "::endgroup::" in out
# The header line is printed inside the group.
assert out.index("::group::") < out.index("> [foo]") < out.index("::endgroup::")
def test_run_esphome_test_closes_group_before_failure_report(
_ci: None,
monkeypatch: pytest.MonkeyPatch,
tmp_path: Path,
capsys: pytest.CaptureFixture[str],
) -> None:
"""On a fail-fast failure the group closes before the reproduce report."""
monkeypatch.setattr(tbc.subprocess, "run", lambda *a, **k: _FakeCompleted(1))
repo_root = Path(tbc.__file__).parent.parent
test_file = repo_root / "tests" / "components" / "foo" / "test.esp32-idf.yaml"
# continue_on_fail=False makes the failure raise after printing the
# reproduce block, which is the path that must stay outside the group.
with pytest.raises(tbc.subprocess.CalledProcessError):
tbc.run_esphome_test(
component="foo",
test_file=test_file,
platform="esp32-idf",
platform_with_version="esp32-idf",
base_file=_make_base_file(tmp_path),
build_dir=tmp_path,
esphome_command="config",
continue_on_fail=False,
)
out = capsys.readouterr().out
assert "::endgroup::" in out
assert "FAILED - Command to reproduce:" in out
# The group must be closed before the failure report is printed.
assert out.index("::endgroup::") < out.index("FAILED - Command to reproduce:")
def test_run_esphome_test_closes_group_when_subprocess_raises(
_ci: None,
monkeypatch: pytest.MonkeyPatch,
tmp_path: Path,
capsys: pytest.CaptureFixture[str],
) -> None:
"""If the subprocess raises, the group is still closed (via finally)."""
def _boom(*a: object, **k: object) -> None:
raise OSError("boom")
monkeypatch.setattr(tbc.subprocess, "run", _boom)
repo_root = Path(tbc.__file__).parent.parent
test_file = repo_root / "tests" / "components" / "foo" / "test.esp32-idf.yaml"
with pytest.raises(OSError, match="boom"):
tbc.run_esphome_test(
component="foo",
test_file=test_file,
platform="esp32-idf",
platform_with_version="esp32-idf",
base_file=_make_base_file(tmp_path),
build_dir=tmp_path,
esphome_command="config",
continue_on_fail=True,
)
assert "::endgroup::" in capsys.readouterr().out
def test_run_grouped_test_wraps_output_in_group(
_ci: None,
monkeypatch: pytest.MonkeyPatch,
tmp_path: Path,
capsys: pytest.CaptureFixture[str],
) -> None:
"""A grouped test is bracketed by group markers listing its components."""
monkeypatch.setattr(tbc.subprocess, "run", lambda *a, **k: _FakeCompleted(0))
monkeypatch.setattr(tbc, "merge_component_configs", lambda **k: None)
result = tbc.run_grouped_test(
components=["foo", "bar"],
platform="esp32-idf",
platform_with_version="esp32-idf",
base_file=_make_base_file(tmp_path),
build_dir=tmp_path,
tests_dir=tmp_path,
esphome_command="config",
continue_on_fail=True,
)
out = capsys.readouterr().out
assert result.success is True
assert "::group::[GROUPED: foo, bar] [esp32-idf]" in out
assert out.index("::group::") < out.index("> [GROUPED") < out.index("::endgroup::")
def test_run_grouped_test_closes_group_before_failure_report(
_ci: None,
monkeypatch: pytest.MonkeyPatch,
tmp_path: Path,
capsys: pytest.CaptureFixture[str],
) -> None:
"""A fail-fast grouped failure closes the group before the report."""
monkeypatch.setattr(tbc.subprocess, "run", lambda *a, **k: _FakeCompleted(1))
monkeypatch.setattr(tbc, "merge_component_configs", lambda **k: None)
with pytest.raises(tbc.subprocess.CalledProcessError):
tbc.run_grouped_test(
components=["foo", "bar"],
platform="esp32-idf",
platform_with_version="esp32-idf",
base_file=_make_base_file(tmp_path),
build_dir=tmp_path,
tests_dir=tmp_path,
esphome_command="config",
continue_on_fail=False,
)
out = capsys.readouterr().out
assert out.index("::endgroup::") < out.index("FAILED - Command to reproduce:")
def test_run_grouped_test_closes_group_when_subprocess_raises(
_ci: None,
monkeypatch: pytest.MonkeyPatch,
tmp_path: Path,
capsys: pytest.CaptureFixture[str],
) -> None:
"""If the grouped subprocess raises, the group is still closed (finally)."""
def _boom(*a: object, **k: object) -> None:
raise OSError("boom")
monkeypatch.setattr(tbc.subprocess, "run", _boom)
monkeypatch.setattr(tbc, "merge_component_configs", lambda **k: None)
with pytest.raises(OSError, match="boom"):
tbc.run_grouped_test(
components=["foo", "bar"],
platform="esp32-idf",
platform_with_version="esp32-idf",
base_file=_make_base_file(tmp_path),
build_dir=tmp_path,
tests_dir=tmp_path,
esphome_command="config",
continue_on_fail=True,
)
assert "::endgroup::" in capsys.readouterr().out