From 446e104a2463a7ad1ac1eb21ea04c21fff27f88c Mon Sep 17 00:00:00 2001 From: epenet <6771947+epenet@users.noreply.github.com> Date: Thu, 31 Mar 2022 06:59:09 +0000 Subject: [PATCH] Test fail-fast --- .github/workflows/ci.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index a2dd5788498..46ec9355a4c 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -728,6 +728,7 @@ jobs: (github.event_name != 'push' || github.event.repository.full_name == 'home-assistant/core') && github.event.inputs.lint-only != 'true' && (needs.changes.outputs.test_full_suite == 'true' || needs.changes.outputs.tests_glob) + && (needs.pip-check.result != 'failure') needs: - changes - gen-requirements-all @@ -736,6 +737,7 @@ jobs: - lint-other - lint-isort - mypy + - pip-check - prepare-tests strategy: fail-fast: false