From 38c9891acbc7bb21fa8e4a8b9dcda758e089cf79 Mon Sep 17 00:00:00 2001 From: Shawn Cicoria Date: Thu, 28 Feb 2019 12:33:22 -0500 Subject: [PATCH] address ci build time till better approach and include matrix conditional processing of different versions of python --- agogosml_cli/Dockerfile | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/agogosml_cli/Dockerfile b/agogosml_cli/Dockerfile index 65d36b7a..284d4c5a 100644 --- a/agogosml_cli/Dockerfile +++ b/agogosml_cli/Dockerfile @@ -26,23 +26,23 @@ RUN apk add \ ENV HOME /root -ENV PYENV_ROOT $HOME/.pyenv -ENV PATH $PYENV_ROOT/shims:$PYENV_ROOT/bin:$PATH +# ENV PYENV_ROOT $HOME/.pyenv +# ENV PATH $PYENV_ROOT/shims:$PYENV_ROOT/bin:$PATH RUN curl https://pyenv.run | bash #see https://www.loganasherjones.com/2018/03/setting-up-your-python-environment/ -RUN pyenv install 3.5.6 -RUN pyenv install 3.6.8 -RUN pyenv install 3.7.2 +# RUN pyenv install 3.5.6 +# RUN pyenv install 3.6.8 +# RUN pyenv install 3.7.2 RUN pip install pytest tox RUN pip install tox-globinterpreter WORKDIR /usr/src/agogosml_cli -RUN echo "3.5.6" >> .python-version -RUN echo "3.6.8" >> .python-version -RUN echo "3.7.2" >> .python-version +# RUN echo "3.5.6" >> .python-version +# RUN echo "3.6.8" >> .python-version +# RUN echo "3.7.2" >> .python-version COPY requirements-dev.txt . RUN pip install --no-cache-dir -r requirements-dev.txt @@ -55,7 +55,7 @@ COPY . . RUN make clean && \ make lint && \ make test && \ - make test-all && \ + # make test-all && \ make docs && \ make dist