From 18b2274badbdc825fefb28817e8ea91ea6c8bd7d Mon Sep 17 00:00:00 2001 From: Jacob Mealey Date: Fri, 8 Mar 2024 09:07:06 -0500 Subject: [PATCH] test.py explicity utf-8 decode of file --- test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.py b/test.py index 2f771c85..f1c489c5 100644 --- a/test.py +++ b/test.py @@ -190,7 +190,7 @@ def main(argc, argv): if sys.platform == "win32" or sys.platform == "cygwin": baseCmd += ".exe" - with open(path.join(baseDir, TESTFILE), "r") as file: + with open(path.join(baseDir, TESTFILE), "r", encoding="utf-8") as file: allTests = json.load(file) testIndexesToRun = []