From: gggeek Date: Thu, 12 Jan 2023 12:08:30 +0000 (+0000) Subject: make sure test container has at least one locale with comma as decimal separator X-Git-Tag: 4.10.0~168 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=976eb194b8f1c4749faf9b6f2a2bc892de43a8f2;p=plcapi.git make sure test container has at least one locale with comma as decimal separator --- diff --git a/tests/ci/setup/install_packages.sh b/tests/ci/setup/install_packages.sh index e9f3e9cd..2e465da0 100755 --- a/tests/ci/setup/install_packages.sh +++ b/tests/ci/setup/install_packages.sh @@ -7,6 +7,9 @@ set -e echo "Installing base software packages..." DEBIAN_FRONTEND=noninteractive apt-get install -y \ - sudo unzip wget + locales sudo unzip wget + +# We set up one locale which uses the comma as decimal separator. Used by the testsuite +locale-gen de_DE de_DE.UTF-8 echo "Done installing base software packages"