Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
UnravelSports [JB] committed Oct 18, 2024
1 parent 49f0956 commit d155908
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,12 @@ jobs:
env:
PYTHONIOENCODING: utf-8 # Ensure Python uses UTF-8 encoding
run: |
if [ "${{ runner.os }}" == "Windows" ]; then
chcp 65001 | python -m pip install -e .[test]
else
if ($Env:RUNNER_OS -eq 'Windows') {
chcp 65001
python -m pip install -e .[test]
fi
} else {
python -m pip install -e .[test]
}
- name: Code formatting
run: |
Expand Down

0 comments on commit d155908

Please sign in to comment.