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 3d6f45a commit 4790239Copy full SHA for 4790239
.github/workflows/ci.yml
@@ -17,7 +17,15 @@ jobs:
17
uses: actions/setup-python@v4
18
with:
19
python-version: ${{ matrix.python }}
20
+ - name: Set UTF-8 encoding on Windows
21
+ if: matrix.os == 'windows-latest'
22
+ run: |
23
+ echo "PYTHONUTF8=1" >> $env:GITHUB_ENV
24
+ chcp 65001
25
+ shell: pwsh
26
- name: Install tox and any other packages
27
run: pip install tox
28
- name: Run tox
29
+ env:
30
+ PYTHONUTF8: ${{ matrix.os == 'windows-latest' && '1' || '' }}
31
run: tox -e py
0 commit comments