Skip to content

Commit d00343f

Browse files
authored
GitHub Actions: Run tests_with_pytz_installed
1 parent f4194c4 commit d00343f

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/main.yml

+21
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,27 @@ jobs:
5858
run: |
5959
codecov -e TOXENV,DJANGO
6060
61+
tests_with_pytz_installed:
62+
name: Python 3.x with pytz installed
63+
runs-on: ubuntu-20.04
64+
65+
steps:
66+
- uses: actions/checkout@v4
67+
68+
- uses: actions/setup-python@v5
69+
with:
70+
python-version: 3.x
71+
cache: 'pip'
72+
cache-dependency-path: 'requirements/*.txt'
73+
74+
- name: Upgrade packaging tools
75+
run: python -m pip install --upgrade pip setuptools virtualenv wheel
76+
77+
- name: Install dependencies
78+
run: python -m pip install --upgrade codecov pytz tox
79+
80+
- run: tox -e py
81+
6182
test-docs:
6283
name: Test documentation links
6384
runs-on: ubuntu-22.04

0 commit comments

Comments
 (0)