Drop support for pytest<6 #245
Workflow file for this run
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: test | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
python-version: | |
- '3.7' | |
- '3.8' | |
- '3.9' | |
- '3.10' | |
- '3.11' | |
- '3.12' | |
runs-on: ${{ matrix.os }} | |
name: ${{ matrix.os }}, Python ${{ matrix.python-version }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install test dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install tox tox-gh-actions | |
- name: Test packaging | |
run: tox -e pkg | |
- name: Run tests with PyTest 4 | |
run: tox | |
if: "!startsWith(matrix.python-version, '3.1')" | |
env: | |
PLATFORM: ${{ matrix.os }} | |
PYTEST_MAJOR_VERSION: 4 | |
PYTEST_PLUGINS: pytest_github_actions_annotate_failures | |
- name: Run tests with PyTest 5 | |
run: tox | |
if: "!startsWith(matrix.python-version, '3.1')" | |
env: | |
PLATFORM: ${{ matrix.os }} | |
PYTEST_MAJOR_VERSION: 5 | |
PYTEST_PLUGINS: pytest_github_actions_annotate_failures | |
- name: Run tests with PyTest 6 | |
run: tox | |
env: | |
PLATFORM: ${{ matrix.os }} | |
PYTEST_MAJOR_VERSION: 6 | |
PYTEST_PLUGINS: pytest_github_actions_annotate_failures | |
- name: Run tests with PyTest 7 | |
run: tox | |
env: | |
PLATFORM: ${{ matrix.os }} | |
PYTEST_MAJOR_VERSION: 7 | |
PYTEST_PLUGINS: pytest_github_actions_annotate_failures | |
post-test: | |
name: All tests passed | |
runs-on: ubuntu-latest | |
needs: test | |
steps: | |
- run: echo ok |