Skip to content

Commit

Permalink
Test in Python 3.13 RC1.
Browse files Browse the repository at this point in the history
  • Loading branch information
aebrahim committed Aug 13, 2024
1 parent 9c17490 commit b8299b9
Showing 1 changed file with 27 additions and 17 deletions.
44 changes: 27 additions & 17 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,24 +10,34 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-20.04, windows-2019, macos-11]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13.0-alpha.3", "pypy3.10", "pypy3.9"]
python-version:
[
"3.8",
"3.9",
"3.10",
"3.11",
"3.12",
"3.13.0rc1",
"pypy3.10",
"pypy3.9",
]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- run: pip install pytest
- run: pytest . --junitxml=junit/test_py${{ matrix.python-version }}_on_${{ matrix.os }}.xml
- run: python -O once_test.py
- run: python -OO once_test.py
- name: Upload pytest test results
uses: actions/upload-artifact@v4
if: success() || failure()
with:
name: test-py${{ matrix.python-version}}-on-${{ matrix.os }}
path: junit/test_py${{ matrix.python-version }}_on_${{ matrix.os }}.xml
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- run: pip install pytest
- run: pytest . --junitxml=junit/test_py${{ matrix.python-version }}_on_${{ matrix.os }}.xml
- run: python -O once_test.py
- run: python -OO once_test.py
- name: Upload pytest test results
uses: actions/upload-artifact@v4
if: success() || failure()
with:
name: test-py${{ matrix.python-version}}-on-${{ matrix.os }}
path: junit/test_py${{ matrix.python-version }}_on_${{ matrix.os }}.xml

lint:
runs-on: ubuntu-latest
Expand Down

0 comments on commit b8299b9

Please sign in to comment.