Skip to content

Commit

Permalink
Attempt to resurrect py2.7 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
stub42 committed Aug 21, 2023
1 parent 0017b98 commit 827bda0
Showing 1 changed file with 33 additions and 1 deletion.
34 changes: 33 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,39 @@ jobs:

strategy:
matrix:
python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10"]
python-version: ["3.5", "3.6", "3.7", "3.8", "3.9", "3.10"]

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
antiquity:
name: "Python 2.7"
runs-on: ubuntu-20.04
container:
image: python:2.7.18-buster

strategy:
matrix:
python-version: ["2.7"]

steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 827bda0

Please sign in to comment.