aboutsummaryrefslogtreecommitdiff
path: root/docker
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 /docker
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 'docker')
-rwxr-xr-xdocker/install_python_versions.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/install_python_versions.sh b/docker/install_python_versions.sh
index c3cd976..6343e63 100755
--- a/docker/install_python_versions.sh
+++ b/docker/install_python_versions.sh
@@ -27,7 +27,7 @@ function set_python_global_versions() {
# available globally.
py_versions=$1
parameters=$2
-for i in $(echo "$py_versions" | tr ";" "\n")
+for i in $(echo "$py_versions" | tr "," "\n")
do
pyenv install "$i":latest
done