From ba9aeace4c3d3f4f31830d68b5cc7dd3f4bf1dde Mon Sep 17 00:00:00 2001 From: Benjamin Klimczak Date: Tue, 6 Dec 2022 16:55:51 +0000 Subject: 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 --- docker/install_python_versions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docker') 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 -- cgit v1.2.1