We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f8cc9c commit 0319a57Copy full SHA for 0319a57
python/grass/gunittest/main.py
@@ -64,7 +64,7 @@ def __init__(
64
text_result = TextTestResult(
65
stream=_WritelnDecorator(sys.stderr), descriptions=True, verbosity=verbosity
66
)
67
- with open("test_keyvalue_result.txt", "w") as keyval_file:
+ with open("test_keyvalue_result.txt", "w", encoding="utf-8") as keyval_file:
68
keyval_result = KeyValueTestResult(stream=keyval_file)
69
result = MultiTestResult(results=[text_result, keyval_result])
70
0 commit comments