Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ jobs:
homeassistant-version:
- "dev"
python-version:
- "3.13"
- "3.14"
Comment on lines 59 to 60
Copy link

Copilot AI Feb 9, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The matrix no longer includes Python 3.13, but later in this workflow the Codecov upload step is still guarded by if: ${{ matrix.python-version == '3.13' }}. With the updated matrix, coverage upload will never run. Update the condition to match the remaining version (or drop the condition if you only want a single upload).

Copilot uses AI. Check for mistakes.
steps:
- name: 📥 Checkout the repository
Expand Down Expand Up @@ -90,7 +89,7 @@ jobs:
run: scripts/test

- name: 📤 Upload coverage to Codecov
if: ${{ matrix.python-version == '3.13' }}
if: ${{ matrix.python-version == '3.14' }}
run: |
scripts/coverage
curl -sfSL https://codecov.io/bash | bash -
Loading