From 1e0788aeea2c331b30a6f56ec57600bc4f045b14 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Tue, 28 Jun 2022 04:51:02 +0200 Subject: [PATCH] Allow partial tests to take 20 minutes, use all cores (#74079) --- .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 fcd879d7512..bf690740c6d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -803,7 +803,7 @@ jobs: tests - name: Run pytest (partially) if: needs.changes.outputs.test_full_suite == 'false' - timeout-minutes: 10 + timeout-minutes: 20 shell: bash run: | . venv/bin/activate @@ -818,7 +818,7 @@ jobs: -qq \ --timeout=9 \ --durations=10 \ - -n 0 \ + -n auto \ --cov="homeassistant.components.${{ matrix.group }}" \ --cov-report=xml \ --cov-report=term-missing \