aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorBenjamin Klimczak <benjamin.klimczak@arm.com>2022-12-06 16:55:51 +0000
committerBenjamin Klimczak <benjamin.klimczak@arm.com>2022-12-14 14:08:26 +0000
commitba9aeace4c3d3f4f31830d68b5cc7dd3f4bf1dde (patch)
treeb42a50176d88b4a9a3dd4131189027a6cb7def6a /Dockerfile
parentdab3dad2578074407f1e4bf78de78bced7265c84 (diff)
downloadmlia-ba9aeace4c3d3f4f31830d68b5cc7dd3f4bf1dde.tar.gz
MLIA-468 Skip e2e tests if backend is unavailable
The behavior can be modified using the flag '--no-skip' for the e2e tests, i.e. providing the flag will let the tests fail when the backend is unavailable and otherwise these tests are skipped per default. Also use commas instead of semi-colons to separate Python versions. Change-Id: Ib2b9f6c66ce4d500b0d50080d127c06e43616c3d
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index c00482b..28a2707 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -79,7 +79,7 @@ RUN curl https://pyenv.run | bash
ENV PYENV_ROOT /home/foo/.pyenv
ENV PATH $PYENV_ROOT/shims:$PYENV_ROOT/bin:$PATH
-# Python versions separated by semicolons. E.g. "3.8;3.9"
+# Python versions separated by commas, e.g. "3.8,3.9"
ARG PYTHON_VERSIONS
# Install Python versions and set them to be available globally
COPY docker/install_python_versions.sh /home/foo