From e20df0a27827406128b2bbd0372ec3198ef3c52b Mon Sep 17 00:00:00 2001 From: Kyle Scheuing Date: Sat, 31 Aug 2024 02:40:05 -0400 Subject: [PATCH] test(gui): fix locale dependant tests regression 4a73d0359deca1ce8f6d9a8df3579ba8cdf9bee9 was the previous fix, which was not ported over to just. --- gui/justfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gui/justfile b/gui/justfile index 8d93a728..13902f3d 100644 --- a/gui/justfile +++ b/gui/justfile @@ -10,10 +10,10 @@ build profile='dev': ./scripts/build-locale.sh ./share test: - cargo test + LC_ALL=C LANG=C cargo test test-cov: - cargo llvm-cov --no-report + LC_ALL=C LANG=C cargo llvm-cov --no-report install install_prefix: (build 'release') ./scripts/install.sh "{{install_prefix}}"