From 65db8bf7a905d8cabcb8b3e95b2c229672605f88 Mon Sep 17 00:00:00 2001 From: Marek Fiala Date: Thu, 8 Feb 2024 13:00:30 +0100 Subject: [PATCH] refactor(tools): Split build pytest into multiple jobs --- .gitlab/ci/test-win.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab/ci/test-win.yml b/.gitlab/ci/test-win.yml index 1cb21f6d2b..9550889fc3 100644 --- a/.gitlab/ci/test-win.yml +++ b/.gitlab/ci/test-win.yml @@ -73,12 +73,13 @@ test_tools_win: - . .\export.ps1 - python "${SUBMODULE_FETCH_TOOL}" -s "all" - cd ${IDF_PATH}\tools\test_build_system - - pytest --junitxml=${CI_PROJECT_DIR}\XUNIT_RESULT.xml + - pytest --parallel-count ${CI_NODE_TOTAL} --parallel-index ${CI_NODE_INDEX} --junitxml=${CI_PROJECT_DIR}\XUNIT_RESULT.xml pytest_build_system_win: extends: - .test_build_system_template_win - .rules:labels:windows_pytest_build_system + parallel: 2 needs: [] tags: - windows-build