diff --git a/adapters/Dockerfile.fenics-adapter b/adapters/Dockerfile.fenics-adapter index c52c29d04..3c9ce9dd5 100644 --- a/adapters/Dockerfile.fenics-adapter +++ b/adapters/Dockerfile.fenics-adapter @@ -26,6 +26,7 @@ RUN add-apt-repository -y ppa:fenics-packages/fenics && \ apt-get -qq install --no-install-recommends fenics && \ rm -rf /var/lib/apt/lists/* +# Using pip3 pip-wrapper will trigger a warning. See https://github.com/precice/systemtests/issues/186. RUN pip3 install --user cython # TODO: can we put this dependency into requirements.txt of python? USER precice diff --git a/tests/TestCompose_nutils-of.Ubuntu1804.home/Dockerfile.nutils b/tests/TestCompose_nutils-of.Ubuntu1804.home/Dockerfile.nutils index 05902e8d1..4a5abe61d 100644 --- a/tests/TestCompose_nutils-of.Ubuntu1804.home/Dockerfile.nutils +++ b/tests/TestCompose_nutils-of.Ubuntu1804.home/Dockerfile.nutils @@ -6,6 +6,7 @@ RUN apt-get -qq update && apt-get -qq install \ python3 python3-dev && \ rm -rf /var/lib/apt/lists/* +# Using pip3 pip-wrapper will trigger a warning. See https://github.com/precice/systemtests/issues/186. RUN wget -q https://bootstrap.pypa.io/get-pip.py -O get-pip.py && \ python3 get-pip.py && \ pip3 install Cython mpi4py numpy diff --git a/tests/Test_bindings.Ubuntu1604.home/Dockerfile b/tests/Test_bindings.Ubuntu1604.home/Dockerfile index d8683be3f..0ec8371dd 100644 --- a/tests/Test_bindings.Ubuntu1604.home/Dockerfile +++ b/tests/Test_bindings.Ubuntu1604.home/Dockerfile @@ -26,6 +26,7 @@ WORKDIR /home/precice RUN git clone --branch $branch https://github.com/precice/python-bindings.git # Builds the precice python bindings WORKDIR /home/precice/python-bindings +# Using pip3 pip-wrapper will trigger a warning. See https://github.com/precice/systemtests/issues/186. RUN pip3 install --user . # Runs the python solverdummy diff --git a/tests/Test_bindings.Ubuntu1804.home/Dockerfile b/tests/Test_bindings.Ubuntu1804.home/Dockerfile index 70e0d8363..e4328f8d9 100644 --- a/tests/Test_bindings.Ubuntu1804.home/Dockerfile +++ b/tests/Test_bindings.Ubuntu1804.home/Dockerfile @@ -26,6 +26,7 @@ WORKDIR /home/precice RUN git clone --branch $branch https://github.com/precice/python-bindings.git # Builds the precice python bindings WORKDIR /home/precice/python-bindings +# Using pip3 pip-wrapper will trigger a warning. See https://github.com/precice/systemtests/issues/186. RUN pip3 install --user . # Runs the python solverdummy