Skip to content

Commit

Permalink
actions: add non-utc job to fast tests
Browse files Browse the repository at this point in the history
  • Loading branch information
oliver-sanders committed Nov 28, 2023
1 parent 5d78600 commit 2b9476e
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/test_fast.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,20 @@ jobs:
fail-fast: false # don't stop on first failure
matrix:
os: ['ubuntu-latest']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3']
python-version: ['3.7', '3.8', '3.10', '3.11', '3']
include:
# mac os test
- os: 'macos-latest'
python-version: '3.7'
python-version: '3.7' # oldest supported version

# non-utc timezone test
- os: 'ubuntu-latest'
python-version: '3.9' # not the oldest, not the most recent version
time-zone: ['XXX-09:35']

env:
# Use non-UTC time zone
TZ: XXX-09:35
TZ: ${{ matrix.time-zone }}
PYTEST_ADDOPTS: --cov --cov-append -n 5 --color=yes

steps:
Expand Down

0 comments on commit 2b9476e

Please sign in to comment.