diff options
author | Zach Koopmans <zkoopmans@google.com> | 2019-12-23 11:48:03 -0800 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2019-12-23 11:49:29 -0800 |
commit | e548ce18051398fb3fe379326080411f59fda379 (patch) | |
tree | 74146c300d431d59bd98a61659fc6a23534946bd /kokoro | |
parent | 5bc4ae9d5746e65909a0bdab60e7bd598d4401c7 (diff) |
Add python3-pip as dependency for Kokoro VM images.
bm-tools requires python3 and pip3 in order to run
tests. Add pip3 so that dependencies correctly install
for Kokoro runs with bazel.
PiperOrigin-RevId: 286923840
Diffstat (limited to 'kokoro')
-rwxr-xr-x | kokoro/ubuntu1604/40_kokoro.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kokoro/ubuntu1604/40_kokoro.sh b/kokoro/ubuntu1604/40_kokoro.sh index 3f50929d5..5f2dfc858 100755 --- a/kokoro/ubuntu1604/40_kokoro.sh +++ b/kokoro/ubuntu1604/40_kokoro.sh @@ -23,7 +23,7 @@ declare -r ssh_public_keys=( ) # Install dependencies. -apt-get update && apt-get install -y rsync coreutils python-psutil qemu-kvm python-pip zip +apt-get update && apt-get install -y rsync coreutils python-psutil qemu-kvm python-pip python3-pip zip # junitparser is used to merge junit xml files. pip install junitparser |