Skip to content

Commit

Permalink
Add junit-xml package to test image as this will be used to generate …
Browse files Browse the repository at this point in the history
…test xml outputs (kubeflow#110)

Update Pipfile and lock file to reflect this
  • Loading branch information
Ankush Agarwal authored and k8s-ci-robot committed Apr 20, 2018
1 parent da8d53f commit a8416e3
Show file tree
Hide file tree
Showing 3 changed files with 192 additions and 104 deletions.
8 changes: 5 additions & 3 deletions images/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -107,11 +107,13 @@ RUN cd /tmp && \
COPY ./Pipfile ./Pipfile.lock /tmp/

# Install various python libraries for both Python 2 and 3 (for now)
# Don't upgrade pip for now because it seems to be broken
# https://github.com/pypa/pip/issues/5240
RUN cd /tmp/ && \
pip install -U pip wheel && \
pip install pipenv && \
pip2 install -U wheel && \
pip2 install pipenv && \
pipenv install --system --two && \
pip3 install -U pip wheel && \
pip3 install -U wheel && \
pip3 install pipenv && \
pipenv install --system --three

Expand Down
6 changes: 1 addition & 5 deletions images/Pipfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
[[source]]

url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"


[packages]

astroid = "==1.6.1"
cachetools = "==2.0.1"
certifi = "==2018.1.18"
Expand Down Expand Up @@ -48,7 +45,6 @@ uritemplate = "==3.0.0"
"urllib3" = "==1.22"
websocket-client = "==0.40.0"
wrapt = "==1.10.11"

junit-xml = "==1.8"

[dev-packages]

Loading

0 comments on commit a8416e3

Please sign in to comment.