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 e09e3ea commit 3aafbf3Copy full SHA for 3aafbf3
.github/workflows/ci.yml
@@ -111,6 +111,13 @@ jobs:
111
if: startsWith(runner.os, 'windows') && matrix.python == '3.9'
112
run: choco install --no-progress --timeout 600 imagemagick.tool ffmpeg
113
continue-on-error: true
114
+ - name: Workaround for UnicodeDecodeError from tox on Windows
115
+ # Refs:
116
+ # https://github.com/lektor/lektor/pull/933#issuecomment-923107580
117
+ # https://github.com/tox-dev/tox/issues/1550
118
+ if: startsWith(runner.os, 'windows')
119
+ shell: bash
120
+ run: echo "PYTHONIOENCODING=utf-8" >> $GITHUB_ENV
121
- name: Install python dependencies
122
run: python -m pip install codecov tox
123
- name: Run python tests
0 commit comments