From 13830bcaff348dedc2336adb7c20d9c1eda289f3 Mon Sep 17 00:00:00 2001 From: Sudeep Mohanty Date: Mon, 16 Feb 2026 17:42:37 +0100 Subject: [PATCH] fix(cmakev2): Skip test_minimal_build_without_main_component for cmakev2 Build System v2 does not support the MINIMAL_BUILD property hence the test test_minimal_build_without_main_component is not applicable for cmakev2. --- tools/test_build_system/test_components.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/test_build_system/test_components.py b/tools/test_build_system/test_components.py index 777fe87650..c5b226a4b3 100644 --- a/tools/test_build_system/test_components.py +++ b/tools/test_build_system/test_components.py @@ -581,6 +581,7 @@ def test_component_validation_with_common_platform_example(idf_py: IdfPyFunc, te ) +@pytest.mark.buildv2_skip('Build system v2 does not support MINIMAL_BUILD') def test_minimal_build_without_main_component(idf_py: IdfPyFunc, test_app_copy: Path) -> None: logging.info('Verify that the build fails when using `MINIMAL_BUILD` without main component')