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 e4387ba
Showing 1 changed file with 27 additions and 1 deletion.
28 changes: 27 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ 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
Expand All @@ -66,3 +66,29 @@ jobs:
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 -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

0 comments on commit e4387ba

Please sign in to comment.