
15 Jun
2022
15 Jun
'22
8:48 a.m.
To avoid ModuleNotFoundErrors during World Build in CI tests, add installation of test/py/requirements.txt to .azure-pipelines.yml
Signed-off-by: Neha Malcom Francis n-francis@ti.com --- .azure-pipelines.yml | 1 + 1 file changed, 1 insertion(+)
diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index ad540ea635..0fd57f59f4 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -551,6 +551,7 @@ stages: EOF cat << "EOF" >> build.sh if [[ "${BUILDMAN}" != "" ]]; then + pip install -r test/py/requirements.txt ret=0; tools/buildman/buildman -o /tmp -P -E -W ${BUILDMAN} ${OVERRIDE} || ret=$?; if [[ $ret -ne 0 ]]; then
--
2.17.1