From 10316756085b5fed27c26bcbb9f9860a787c730e Mon Sep 17 00:00:00 2001 From: Boris Zbarsky Date: Tue, 8 Feb 2022 13:01:10 -0500 Subject: [PATCH] Stop excluding TestGroupDemo* tests in our CI. (#14889) The TestGroupDemo* tests have been moved to the "manual tests" list, so they get excluded automatically now. Remove some noise from the CI description. Fixes https://github.com/project-chip/connectedhomeip/issues/14753 --- .github/workflows/tests.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index eca58cad4d9782..af995a986815ce 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -89,7 +89,6 @@ jobs: run: | ./scripts/run_in_build_env.sh \ "./scripts/tests/run_test_suite.py \ - --target-skip-glob '{TestGroupDemoCommand,TestGroupDemoConfig}' \ --chip-tool ./out/linux-x64-chip-tool-${BUILD_VARIANT}${CHIP_TOOL_VARIANT}/chip-tool \ run \ --iterations 1 \ @@ -181,7 +180,7 @@ jobs: ./scripts/run_in_build_env.sh \ "./scripts/tests/run_test_suite.py \ --chip-tool ./out/darwin-x64-chip-tool-${BUILD_VARIANT}${CHIP_TOOL_VARIANT}/chip-tool \ - --target-skip-glob '{TestGroupMessaging,TestGroupDemoCommand,TestGroupDemoConfig,TV_*}' \ + --target-skip-glob '{TestGroupMessaging,TV_*}' \ run \ --iterations 1 \ --all-clusters-app ./out/darwin-x64-all-clusters-${BUILD_VARIANT}/chip-all-clusters-app \