From cfdaa4b58d1bcd7acd2b8e658d161201ee3c06de Mon Sep 17 00:00:00 2001 From: Jonathan de Jong Date: Fri, 31 May 2024 14:23:21 +0200 Subject: [PATCH] add explanation comment to unicode environment variables --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 81a202263b..7188c13ddc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -428,6 +428,7 @@ jobs: - name: Run test command (Non-Windows) if: matrix.os != 'windows-latest' env: + # Ensures unicode outputs properly on all versions PYTHONUTF8: 1 PYTHONIOENCODING: utf-8 run: python3.${{ matrix.python-minor }} Core/ClientSMLSWIG/Python/TestPythonSML.py @@ -435,6 +436,7 @@ jobs: - name: Run test command (Windows) if: matrix.os == 'windows-latest' env: + # Ensures unicode outputs properly on all versions PYTHONUTF8: 1 PYTHONIOENCODING: utf-8 run: py -3.${{ matrix.python-minor }} Core/ClientSMLSWIG/Python/TestPythonSML.py