Install packages one at a time 31/85331/2
authorJamo Luhrsen <jluhrsen@gmail.com>
Tue, 22 Oct 2019 18:01:22 +0000 (11:01 -0700)
committerJamo Luhrsen <jluhrsen@gmail.com>
Tue, 22 Oct 2019 18:03:58 +0000 (11:03 -0700)
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 <jluhrsen@gmail.com>
Change-Id: Iaa45e22708cd70a358cc90b3e9a76d94becc18e3
Signed-off-by: Jamo Luhrsen <jluhrsen@gmail.com>
jjb/generate-csit-status-report.sh

index 83d5c9ea3abeed217274ed313d4ee34d1c66207b..b09775faf524099fbfb7342065c61305da44a355 100644 (file)
@@ -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"