Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes test flakiness caused by "unsupported operand type(s) for -=: 'Retry' and 'int'" #2563

Merged
merged 1 commit into from
Nov 7, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion test/sample-test/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@
FROM google/cloud-sdk:236.0.0

RUN apt-get update -y && \
apt-get install --no-install-recommends -y -q python3-pip default-jdk python3-setuptools python3-dev && \
apt-get install --no-install-recommends -y -q default-jdk python3-setuptools python3-dev && \
apt-get install --no-install-recommends -y -q libssl-dev libffi-dev wget ssh

RUN wget https://bootstrap.pypa.io/get-pip.py && python3 get-pip.py

RUN pip3 install wheel
RUN pip3 install junit-xml
RUN pip3 install kubernetes==9.0.0
Expand Down