Compare commits

..

2 Commits

Author SHA1 Message Date
Robert Resch
23e9eafb12 Don't wait for prek 2026-03-16 23:10:11 +01:00
Robert Resch
4264d41bab Run split tests in the same stage with mypy 2026-03-16 23:02:14 +01:00
4 changed files with 3 additions and 8 deletions

View File

@@ -14,7 +14,7 @@ env:
UV_HTTP_TIMEOUT: 60
UV_SYSTEM_PYTHON: "true"
# Base image version from https://github.com/home-assistant/docker
BASE_IMAGE_VERSION: "2026.02.0"
BASE_IMAGE_VERSION: "2026.01.0"
ARCHITECTURES: '["amd64", "aarch64"]'
permissions: {}

View File

@@ -852,10 +852,6 @@ jobs:
needs:
- info
- base
- gen-requirements-all
- hassfest
- prek
- mypy
steps:
- name: Restore apt cache
uses: actions/cache/restore@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3

View File

@@ -1 +1 @@
3.14.3
3.14.2

View File

@@ -961,8 +961,7 @@ class HomeAssistant:
async def async_block_till_done(self, wait_background_tasks: bool = False) -> None:
"""Block until all pending work is done."""
# Sleep twice to flush out any call_soon_threadsafe
await asyncio.sleep(0)
# To flush out any call_soon_threadsafe
await asyncio.sleep(0)
start_time: float | None = None
current_task = asyncio.current_task()