Test with Python 3.13 #110
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
latest: | |
name: Latest Python Stable Release | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.12"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip wheel flake8 | |
- name: Build | |
run: | | |
make build | |
- name: Unit Tests | |
run: | | |
cd build/dist/pytz/tests | |
python test_lazy.py -vv | |
python test_tzinfo.py -vv | |
- name: Documentation Tests | |
run: | | |
cd build/dist/pytz/tests | |
python test_docs.py -vv | |
- name: zdump Tests | |
run: | | |
python gen_tests.py | |
python test_zdump.py -vv | |
legacy: | |
name: "Other Python 3 Releases" | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
python-version: ["3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.13"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
allow-prereleases: true | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip wheel flake8 | |
- name: Build | |
run: | | |
make build | |
- name: Unit Tests | |
run: | | |
cd build/dist/pytz/tests | |
python test_lazy.py -vv | |
python test_tzinfo.py -vv | |
- name: Documentation Tests | |
run: | | |
cd build/dist/pytz/tests | |
python test_docs.py -vv | |
antiquity: | |
name: "Python 2.7" | |
runs-on: ubuntu-20.04 | |
container: | |
image: python:2.7.18-buster | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
apt-get update && apt-get install sudo cmake gawk rsync -y | |
sudo apt-get update -qq -y | |
sudo python -m pip install --upgrade pip wheel flake8 | |
- name: Build | |
run: | | |
make build | |
- name: Unit Tests | |
run: | | |
cd build/dist/pytz/tests | |
python test_lazy.py -vv | |
python test_tzinfo.py -vv | |
- name: Documentation Tests | |
run: | | |
cd build/dist/pytz/tests | |
python test_docs.py -vv |