From 7331612c5f016485c8092013458afd31bd83a4c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cwieger=E2=80=9D?= <“j.w.wesselink@tue.nl”> Date: Thu, 3 Oct 2024 15:36:46 +0200 Subject: [PATCH] Set PYTHONIOENCODING: utf-8 on the Windows testing workflow - This is an attempt to solve character encoding issues --- .github/workflows/run-tests-windows.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/run-tests-windows.yml b/.github/workflows/run-tests-windows.yml index 5ecc8bb..7d72072 100644 --- a/.github/workflows/run-tests-windows.yml +++ b/.github/workflows/run-tests-windows.yml @@ -33,6 +33,7 @@ jobs: - name: Run tests env: PYTHONPATH: ${{ github.workspace }}\src + PYTHONIOENCODING: utf-8 run: | python -m unittest discover tests