From a888ce928228973c4b3c8b0bbe0124dc110f95d9 Mon Sep 17 00:00:00 2001 From: Erik Montnemery Date: Tue, 29 Nov 2022 12:37:57 +0100 Subject: [PATCH] Increase timeout of MariaDB CI job (#82911) --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 262229e6ade..e85df0ba4dd 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -936,7 +936,7 @@ jobs: . venv/bin/activate pip install mysqlclient sqlalchemy_utils - name: Run pytest (partially) - timeout-minutes: 10 + timeout-minutes: 15 shell: bash run: | . venv/bin/activate @@ -944,7 +944,7 @@ jobs: python3 -X dev -m pytest \ -qq \ - --timeout=9 \ + --timeout=20 \ -n 1 \ --cov="homeassistant.components.recorder" \ --cov-report=xml \