Skip to content

Commit 49879a2

Browse files
actions: add non-utc job to fast tests
1 parent be46a11 commit 49879a2

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/test_fast.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,20 @@ jobs:
2020
fail-fast: false # don't stop on first failure
2121
matrix:
2222
os: ['ubuntu-latest']
23-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3']
23+
python-version: ['3.7', '3.8', '3.10', '3.11', '3']
2424
include:
25+
# mac os test
2526
- os: 'macos-latest'
26-
python-version: '3.7'
27+
python-version: '3.7' # oldest supported version
28+
29+
# non-utc timezone test
30+
- os: 'ubuntu-latest'
31+
python-version: '3.9' # not the oldest, not the most recent version
32+
time-zone: ['XXX-09:35']
2733

2834
env:
2935
# Use non-UTC time zone
30-
TZ: XXX-09:35
36+
TZ: ${{ matrix.time-zone }}
3137
PYTEST_ADDOPTS: --cov --cov-append -n 5 --color=yes
3238

3339
steps:

0 commit comments

Comments
 (0)