Open kriom opened 1 day ago
:x: Hi ! :x:
This issue can be closed !
I resolved my issue and it has nothing to see with turbo_tests
.
To resolve it I had fix my locale in my Dockerfile
FROM ruby:3.3.6-bullseye as base
# ...
ENV LANG=en_US.UTF-8
ENV LANGUAGE=en_US:en
ENV LC_ALL=en_US.UTF-8
# ...
RUN apt-get update && apt-get install -y locales
RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && locale-gen en_US.UTF-8
Hi,
First, thank for you great gem,
Lately I've had test runs crash with this error :
It seems that turbo tests does not support my rspec output when it contains non US-ASCII caractères like "é" or "è"
How can we fix it ? Does this have anything to do with the local LC_ALL (en_US.UTF-8) displayed in the error output?
I'm going to continue looking into this problem, but if anyone knows what to do, I'd be happy to help.
Thanks !