From 976eb194b8f1c4749faf9b6f2a2bc892de43a8f2 Mon Sep 17 00:00:00 2001 From: gggeek Date: Thu, 12 Jan 2023 12:08:30 +0000 Subject: [PATCH] make sure test container has at least one locale with comma as decimal separator --- tests/ci/setup/install_packages.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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" -- 2.47.0