From 47bfd337d28163e1155ba46c6892454b110e3866 Mon Sep 17 00:00:00 2001 From: Sergei Silnov Date: Mon, 24 Feb 2020 17:35:29 +0100 Subject: [PATCH] Improve message for component manager tests --- tools/ci/test_build_system_cmake.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/ci/test_build_system_cmake.sh b/tools/ci/test_build_system_cmake.sh index da9151c4a7..72572fd148 100755 --- a/tools/ci/test_build_system_cmake.sh +++ b/tools/ci/test_build_system_cmake.sh @@ -632,8 +632,8 @@ endmenu\n" >> ${IDF_PATH}/Kconfig printf "\n#include \"test_component.h\"\n" >> main/main.c printf "dependencies:\n test_component:\n path: test_component\n git: ${COMPONENT_MANAGER_TEST_REPO}\n" >> idf_project.yml ! idf.py build || failure "Build should fail if dependencies are not installed" - pip install ${COMPONENT_MANAGER_REPO} - idf.py reconfigure build || failure "Build succeeds once requirements are installed" + pip install ${COMPONENT_MANAGER_REPO} || failure "Failed to install the component manager" + idf.py reconfigure build || failure "Build didn't succeed with required components installed by package manager" pip uninstall -y idf_component_manager rm idf_project.yml git checkout main/main.c