From: Jamo Luhrsen Date: Tue, 22 Oct 2019 18:01:22 +0000 (-0700) Subject: Install packages one at a time X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=releng%2Fbuilder.git;a=commitdiff_plain;h=1b2cacefd84381c23ef994433817ea752e119066 Install packages one at a time The csit_failed_tests.txt file is not being created any more. This fixes it. Not sure why this breaks when installing one in a single line, but the bs4 and requests libraries aren't found when they are installed together with tox on the same command line. Also, turns out that we need bs4 now instead of beautifulsoup4. Signed-off-by: Jamo Luhrsen Change-Id: Iaa45e22708cd70a358cc90b3e9a76d94becc18e3 Signed-off-by: Jamo Luhrsen --- diff --git a/jjb/generate-csit-status-report.sh b/jjb/generate-csit-status-report.sh index 83d5c9ea3..b09775faf 100644 --- a/jjb/generate-csit-status-report.sh +++ b/jjb/generate-csit-status-report.sh @@ -58,7 +58,9 @@ virtualenv --quiet "/tmp/v/jenkins" # shellcheck source=/tmp/v/jenkins/bin/activate disable=SC1091 source "/tmp/v/jenkins/bin/activate" pip install --quiet --upgrade "pip<10.0.0" setuptools -pip install --quiet --upgrade tox beautifulsoup4 requests +pip install --quiet --upgrade tox +pip install --quiet --upgrade beautifulsoup4 +pip install --quiet --upgrade requests echo python "$script" "$BUILD_URL" python "$script" "$BUILD_URL"