From 8827c9401b76794b79c769fbfaff0a4c708d099c Mon Sep 17 00:00:00 2001 From: ElVit <54866762+ElVit@users.noreply.github.com> Date: Wed, 26 Nov 2025 08:41:03 +0100 Subject: [PATCH] Update test_panasonic_heatpump.yml --- .github/workflows/test_panasonic_heatpump.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test_panasonic_heatpump.yml b/.github/workflows/test_panasonic_heatpump.yml index 5528496..5f16ef5 100644 --- a/.github/workflows/test_panasonic_heatpump.yml +++ b/.github/workflows/test_panasonic_heatpump.yml @@ -170,14 +170,14 @@ jobs: echo "Lint Python: ${{ needs.lint-python.result }}" echo "Python Unit Tests: ${{ needs.test-python.result }}" echo "Minimal Config: ${{ needs.test-minimal-config.result }}" - echo "Multi-instance Config: ${{ needs.test-multiconf.result }}" + echo "Multi-instance Config: ${{ needs.test-full-config.result }}" if [ "${{ needs.test-build.result }}" != "success" ] || \ [ "${{ needs.lint-code.result }}" != "success" ] || \ [ "${{ needs.lint-python.result }}" != "success" ] || \ [ "${{ needs.test-python.result }}" != "success" ] || \ [ "${{ needs.test-minimal-config.result }}" != "success" ] || \ - [ "${{ needs.test-multiconf.result }}" != "success" ]; then + [ "${{ needs.test-full-config.result }}" != "success" ]; then echo "One or more tests failed" exit 1 fi