From c63063f3f682d9e18befbd11e42053acf9f1840e Mon Sep 17 00:00:00 2001 From: Sudeep Mohanty Date: Tue, 23 Sep 2025 09:35:27 +0200 Subject: [PATCH] feat(cmakev2): Enabled test_versions.py for cmakev2 --- .gitlab/ci/build.yml | 1 + tools/test_build_system/test_versions.py | 1 + 2 files changed, 2 insertions(+) diff --git a/.gitlab/ci/build.yml b/.gitlab/ci/build.yml index cd32506342..ad4ed2f27f 100644 --- a/.gitlab/ci/build.yml +++ b/.gitlab/ci/build.yml @@ -280,6 +280,7 @@ pytest_buildv2_system: test_partition.py test_reproducible_build.py test_sdkconfig.py + test_versions.py pytest_build_system_macos: extends: diff --git a/tools/test_build_system/test_versions.py b/tools/test_build_system/test_versions.py index 5c5734a2e3..dddc79d0c4 100644 --- a/tools/test_build_system/test_versions.py +++ b/tools/test_build_system/test_versions.py @@ -70,6 +70,7 @@ def test_versions_get_version_from_git_describe( # 6. Verify that cmake correctly flags invalid inputs for the VERSION argument and accepts valid inputs for the same # ############################################################################################# +@pytest.mark.buildv2_skip('cmakev2 does not need to parse the VERSION argument in the build system') def test_versions_get_version_from_version_arg(idf_py: IdfPyFunc, test_git_template_app: Path) -> None: logging.info('Verify that the VERSION argument in project() is correctly parsed by cmake')