Skip to content

Add CI tests for Python 3.12 and pytest 8 #122

Add CI tests for Python 3.12 and pytest 8

Add CI tests for Python 3.12 and pytest 8 #122

Workflow file for this run

name: Testsuite
on:
[push, pull_request]
defaults:
run:
shell: bash
jobs:
linter:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.10"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Get pip cache dir
id: pip-cache
run: |
echo "::set-output name=dir::$(pip cache dir)"
- name: pip cache
uses: actions/cache@v4
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: py${{ matrix.python-version }}-${{ matrix.os }}-pip
- name: Install linter
run: python -m pip install flake8
- name: Check syntax and style
run: python -m flake8 .
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12"]
include:
- python-version: "pypy-3.7"
os: ubuntu-latest
- python-version: "pypy-3.9"
os: ubuntu-latest
- python-version: "pypy-3.10"
os: ubuntu-latest
env:
OS: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Get pip cache dir
id: pip-cache
run: |
python -m pip install -U pip # to ensure version > 20 to have cache dir
echo "::set-output name=dir::$(pip cache dir)"
- name: pip cache
uses: actions/cache@v4
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: py${{ matrix.python-version }}-${{ matrix.os }}-pip
- name: Test environment setup
run: |
python -m pip install wheel
python -m pip install pytest pytest-cov pytest-randomly tox
- name: Run tests
run: |
TOX_PYTHON_VERSION=$(if [[ ${{ matrix.python-version }} == pypy* ]]; then echo ${{ matrix.python-version }} | tr -d .-; else echo py${{ matrix.python-version }} | tr -d .-; fi)
COV_CMD=$(if [ ${{ matrix.python-version }} = 3.10 ]; then echo "--cov=find_dependencies --cov-report=xml"; else echo ; fi) tox -e $(tox -l | grep $TOX_PYTHON_VERSION | paste -sd "," -)
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
if: ${{ success() && matrix.python-version == 3.10 }}
with:
env_vars: OS
name: codecov-pytest-find-dependencies
files: ./coverage.xml
deploy:
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
runs-on: ubuntu-latest
needs: [linter, test]
steps:
- uses: actions/checkout@v4
with:
path: main
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install wheel
run: |
python -m pip install --upgrade pip
pip install wheel
- name: Build package
run: |
cd main
python setup.py sdist bdist_wheel
- name: Publish package to PyPI
uses: pypa/gh-action-pypi-publish@master
with:
packages_dir: main/dist/
user: __token__
password: ${{ secrets.PYPI_API_TOKEN_PYTEST_FIND_DEPS }}