From d2ca24bf1eddf72ed8b71d7976bfa96c259df521 Mon Sep 17 00:00:00 2001 From: "Gerber, Mike" Date: Wed, 15 Jan 2020 15:54:09 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=85=20CircleCI:=20Try=20to=20fix=20encodi?= =?UTF-8?q?ng=20problem?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .circleci/config.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index a97d20b..bd115c8 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -12,7 +12,12 @@ jobs: - checkout - run: make install PIP_INSTALL="pip3 install" - run: pip3 install -r requirements-test.txt - - run: make coverage + - run: + command: | + if [[ $(python -c "import sys; print(sys.stdin.encoding)" |grep None) ]]; then + export PYTHONIOENCODING=utf-8 + fi + make coverage - codecov/upload workflows: