Skip to content

Commit

Permalink
Set PYTHONUNBUFFERED in all workflows (#368)
Browse files Browse the repository at this point in the history
* Set PYTHON_UNBUFFERED in all workflows

* Fix spelling

* Fix spelling
  • Loading branch information
mdickinson committed Jul 6, 2021
1 parent b93d74f commit 6abb8b8
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
branches:
- main

env:
PYTHONUNBUFFERED: 1

jobs:
docs:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/check-style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ name: Style check
on:
pull_request

env:
PYTHONUNBUFFERED: 1

jobs:
style:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ name: Run test suite for PySide2 and wxPython
on:
pull_request

env:
PYTHONUNBUFFERED: 1

jobs:
tests-pyside2:
strategy:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/test-bleeding-edge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
# Run at 04:35 UTC every Sunday
- cron: '35 4 * * 0'

env:
PYTHONUNBUFFERED: 1

jobs:
test-bleeding-edge:
strategy:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/test-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ name: Check that documentation builds cleanly
on:
pull_request

env:
PYTHONUNBUFFERED: 1

jobs:
docs:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 6abb8b8

Please sign in to comment.