mirror of
https://github.com/basnijholt/adaptive-lighting.git
synced 2026-09-25 03:14:44 +02:00
ci: migrate pytest + Docker to PHCC (retire HA core-checkout harness) (#3)
* openspec: propose migrate-ci-to-phcc (proposal + design)
Design-first per repo convention. Migrates pytest + Docker CI off the dead HA core-checkout harness to the PHCC-based local test suite that already passes locally (164). Implementation (tasks + code) held pending review of the design's open questions.
* ci: migrate pytest + Docker off HA core-checkout to PHCC
Implements openspec change migrate-ci-to-phcc.
- pytest.yaml: run the local PHCC suite (latest + dev matrix; dev is
continue-on-error). Fixes the trigger (was push:[master] -> never ran on
main; now main). Drops coverage (was computed but never uploaded). Recipe
verified in a clean env locally: 164 passed, Python 3.13, latest PHCC.
- Delete dead core-checkout scaffolding: install_dependencies action,
setup-dependencies, setup-symlinks, update-test-matrix.{py,yaml},
test_dependencies.py, Dockerfile, docker-build.yml.
- setup-devcontainer: PHCC flow (uv sync --group test).
- tests/README.md: rewritten for 'uv run pytest'.
- CLAUDE.md: drop the 'Refresh test matrix' row.
- hacs.json 2024.12.0 -> 2026.1.0; README min-version line corrected (it
wrongly claimed '2025.1.0 pinned in manifest.json' - manifest pins none).
* openspec: mark migrate-ci-to-phcc 4.3 done (CI verified green)
This commit is contained in:
parent
1c6589e067
commit
027a6de184
19 changed files with 202 additions and 577 deletions
50
.github/workflows/docker-build.yml
vendored
50
.github/workflows/docker-build.yml
vendored
|
|
@ -1,50 +0,0 @@
|
|||
name: Docker
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
tags: ['v*']
|
||||
pull_request:
|
||||
workflow_dispatch:
|
||||
|
||||
env:
|
||||
REGISTRY: ghcr.io
|
||||
IMAGE_NAME: ${{ github.repository }}
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
packages: write
|
||||
strategy:
|
||||
matrix:
|
||||
platform: [linux/amd64, linux/arm64]
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: docker/setup-qemu-action@v4
|
||||
- uses: docker/setup-buildx-action@v4
|
||||
- uses: docker/login-action@v4
|
||||
with:
|
||||
registry: ${{ env.REGISTRY }}
|
||||
username: ${{ github.actor }}
|
||||
password: ${{ secrets.GITHUB_TOKEN }}
|
||||
- id: meta
|
||||
uses: docker/metadata-action@v6
|
||||
with:
|
||||
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
||||
tags: |
|
||||
type=ref,event=branch
|
||||
type=ref,event=pr
|
||||
type=semver,pattern={{version}}
|
||||
type=semver,pattern={{major}}.{{minor}}
|
||||
type=raw,value=latest,enable={{is_default_branch}}
|
||||
- uses: docker/build-push-action@v7
|
||||
with:
|
||||
context: .
|
||||
platforms: ${{ matrix.platform }}
|
||||
push: ${{ github.event_name != 'pull_request' }}
|
||||
tags: ${{ steps.meta.outputs.tags }}
|
||||
labels: ${{ steps.meta.outputs.labels }}
|
||||
cache-from: type=gha
|
||||
cache-to: type=gha,mode=max
|
||||
|
|
@ -1,41 +0,0 @@
|
|||
name: 'Install Dependencies'
|
||||
description: 'Install Home Assistant and test dependencies'
|
||||
inputs:
|
||||
python-version:
|
||||
description: 'Python version'
|
||||
required: true
|
||||
default: '3.10'
|
||||
core-version:
|
||||
description: 'Home Assistant core version'
|
||||
required: false
|
||||
default: 'dev'
|
||||
|
||||
runs:
|
||||
using: "composite"
|
||||
steps:
|
||||
- name: Check out code from GitHub
|
||||
uses: actions/checkout@v6
|
||||
with:
|
||||
repository: ${{ github.repository }}
|
||||
ref: ${{ github.ref }}
|
||||
persist-credentials: false
|
||||
fetch-depth: 0
|
||||
- name: Check out code from GitHub
|
||||
uses: actions/checkout@v6
|
||||
with:
|
||||
repository: home-assistant/core
|
||||
path: core
|
||||
ref: ${{ inputs.core-version }}
|
||||
- name: Set up Python ${{ inputs.python-version }}
|
||||
id: python
|
||||
uses: actions/setup-python@v6.1.0
|
||||
with:
|
||||
python-version: ${{ inputs.python-version }}
|
||||
- name: Set up UV
|
||||
uses: astral-sh/setup-uv@v8.1.0
|
||||
- name: Install dependencies
|
||||
shell: bash
|
||||
run: |
|
||||
uv venv --python ${{ inputs.python-version }}
|
||||
./scripts/setup-dependencies
|
||||
./scripts/setup-symlinks
|
||||
81
.github/workflows/pytest.yaml
vendored
81
.github/workflows/pytest.yaml
vendored
|
|
@ -2,77 +2,44 @@ name: pytest
|
|||
|
||||
on:
|
||||
push:
|
||||
branches: [master]
|
||||
branches: [main]
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
pytest:
|
||||
name: Run pytest
|
||||
name: pytest (${{ matrix.name }})
|
||||
runs-on: ubuntu-24.04
|
||||
timeout-minutes: 60
|
||||
continue-on-error: ${{ matrix.experimental }}
|
||||
timeout-minutes: 20
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
include:
|
||||
- core-version: "2024.12.5"
|
||||
python-version: "3.12"
|
||||
- core-version: "2025.1.4"
|
||||
python-version: "3.12"
|
||||
- core-version: "2025.2.5"
|
||||
python-version: "3.13"
|
||||
- core-version: "2025.3.4"
|
||||
python-version: "3.13"
|
||||
- core-version: "2025.4.4"
|
||||
python-version: "3.13"
|
||||
- core-version: "2025.5.3"
|
||||
python-version: "3.13"
|
||||
- core-version: "2025.6.3"
|
||||
python-version: "3.13"
|
||||
- core-version: "2025.7.4"
|
||||
python-version: "3.13"
|
||||
- core-version: "2025.8.3"
|
||||
python-version: "3.13"
|
||||
- core-version: "2025.9.4"
|
||||
python-version: "3.13"
|
||||
- core-version: "2025.10.4"
|
||||
python-version: "3.13"
|
||||
- core-version: "2025.11.3"
|
||||
python-version: "3.13"
|
||||
- core-version: "2025.12.5"
|
||||
python-version: "3.13"
|
||||
- core-version: "2026.1.3"
|
||||
python-version: "3.13"
|
||||
- core-version: "2026.2.3"
|
||||
python-version: "3.13"
|
||||
- core-version: "2026.3.4"
|
||||
python-version: "3.14.2"
|
||||
- core-version: "2026.4.3"
|
||||
python-version: "3.14.2"
|
||||
- core-version: "dev"
|
||||
python-version: "3.14.2"
|
||||
- name: stable
|
||||
phcc-pre: ""
|
||||
experimental: false
|
||||
- name: dev
|
||||
phcc-pre: "--pre"
|
||||
experimental: true
|
||||
steps:
|
||||
- name: Check out code from GitHub
|
||||
uses: actions/checkout@v6
|
||||
|
||||
- name: Install Home Assistant
|
||||
uses: ./.github/workflows/install_dependencies
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
core-version: ${{ matrix.core-version }}
|
||||
- name: Set up uv
|
||||
uses: astral-sh/setup-uv@v8.1.0
|
||||
|
||||
- name: Install test dependencies (${{ matrix.name }} PHCC)
|
||||
run: |
|
||||
uv venv --python 3.13
|
||||
uv pip install ${{ matrix.phcc-pre }} \
|
||||
pytest-homeassistant-custom-component \
|
||||
pytest \
|
||||
pytest-asyncio \
|
||||
ulid-transform
|
||||
|
||||
- name: Run pytest
|
||||
timeout-minutes: 60
|
||||
env:
|
||||
PYTHONPATH: ${{ github.workspace }}
|
||||
run: |
|
||||
export PYTHONPATH=${PYTHONPATH}:${PWD}
|
||||
source .venv/bin/activate
|
||||
cd core
|
||||
python3 -X dev -m pytest \
|
||||
-vvv \
|
||||
-qq \
|
||||
--timeout=9 \
|
||||
--durations=10 \
|
||||
--cov=homeassistant.components.adaptive_lighting \
|
||||
--cov-report=xml \
|
||||
-o console_output_style=count \
|
||||
-p no:sugar \
|
||||
tests/components/adaptive_lighting
|
||||
pytest -q
|
||||
|
|
|
|||
59
.github/workflows/update-test-matrix.yaml
vendored
59
.github/workflows/update-test-matrix.yaml
vendored
|
|
@ -1,59 +0,0 @@
|
|||
name: Update Test Matrix
|
||||
|
||||
on:
|
||||
schedule:
|
||||
# Run weekly on Monday at 9:00 UTC
|
||||
- cron: "0 9 * * 1"
|
||||
workflow_dispatch: # Allow manual trigger
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
pull-requests: write
|
||||
|
||||
jobs:
|
||||
update-matrix:
|
||||
name: Update HA Core versions in test matrix
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check out code
|
||||
uses: actions/checkout@v6
|
||||
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v6
|
||||
with:
|
||||
python-version: "3.14.2"
|
||||
|
||||
- name: Update test matrix
|
||||
run: python scripts/update-test-matrix.py
|
||||
|
||||
- name: Check for changes
|
||||
id: changes
|
||||
run: |
|
||||
if git diff --quiet .github/workflows/pytest.yaml; then
|
||||
echo "changed=false" >> $GITHUB_OUTPUT
|
||||
else
|
||||
echo "changed=true" >> $GITHUB_OUTPUT
|
||||
echo "Detected changes:"
|
||||
git diff .github/workflows/pytest.yaml
|
||||
fi
|
||||
|
||||
- name: Create Pull Request
|
||||
if: steps.changes.outputs.changed == 'true'
|
||||
uses: peter-evans/create-pull-request@v8
|
||||
with:
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
commit-message: "ci: update HA Core test matrix versions"
|
||||
title: "ci: Update Home Assistant Core test matrix"
|
||||
body: |
|
||||
This PR automatically updates the pytest workflow to test against the latest Home Assistant Core versions.
|
||||
|
||||
## Changes
|
||||
- Updated HA Core versions in the test matrix to include latest patch releases
|
||||
|
||||
---
|
||||
🤖 Generated automatically by the update-test-matrix workflow
|
||||
branch: update-test-matrix
|
||||
delete-branch: true
|
||||
labels: |
|
||||
automation
|
||||
ci
|
||||
Loading…
Add table
Add a link
Reference in a new issue