From eb1d42bf03ae2632ef94fc7dda150ac35384f687 Mon Sep 17 00:00:00 2001 From: "Trez.One" Date: Mon, 25 Aug 2025 21:22:07 -0400 Subject: [PATCH] Another tweak to HA config check. --- .gitea/workflows/home-assistant-deploy.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/home-assistant-deploy.yml b/.gitea/workflows/home-assistant-deploy.yml index 7e77d4f..6062a12 100644 --- a/.gitea/workflows/home-assistant-deploy.yml +++ b/.gitea/workflows/home-assistant-deploy.yml @@ -95,18 +95,18 @@ jobs: notification_title: 'GITEA: Home Assistant Config Check' notification_message: 'Setting up Python and dependencies...' - - name: Download HA requirements_all.txt + - name: Download HA requirements_test_all.txt run: | - curl -sSL -o requirements_all.txt \ - "https://raw.githubusercontent.com/home-assistant/core/${HA_VERSION}/requirements_all.txt" + curl -sSL -o requirements_test_all.txt \ + "https://raw.githubusercontent.com/home-assistant/core/${HA_VERSION}/requirements_test_all.txt" - - name: Build wheels & install Home Assistant + full deps + - name: Build wheels & install Home Assistant + test deps run: | python -m pip install --upgrade pip wheel - # Build wheels for HA, full requirements, and colorlog explicitly - pip wheel --wheel-dir ~/.cache/pip -r requirements_all.txt "homeassistant==${HA_VERSION}" colorlog + # Build wheels for HA, its test requirements, and colorlog explicitly + pip wheel --wheel-dir ~/.cache/pip -r requirements_test_all.txt "homeassistant==${HA_VERSION}" colorlog # Install everything from cached wheels - pip install --no-index --find-links ~/.cache/pip -r requirements_all.txt "homeassistant==${HA_VERSION}" colorlog + pip install --no-index --find-links ~/.cache/pip -r requirements_test_all.txt "homeassistant==${HA_VERSION}" colorlog - name: Gotify Notification (start check) uses: eikendev/gotify-action@master