fix tests for strict exception groups #109
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: CI | |
on: | |
push: | |
branches-ignore: | |
- "dependabot/**" | |
pull_request: | |
jobs: | |
build_and_test_pinned: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
python-version: ['3.8', '3.9', '3.10', '3.11'] # 'pypy-3.7' | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'pip' | |
cache-dependency-path: 'requirements_test.txt' | |
- run: pip install . -r requirements_test.txt | |
- run: pytest | |
build_and_test_latest: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
# macos-latest disabled due to unexplained timeout | |
# https://github.com/python-trio/purerpc/issues/39 | |
os: [ubuntu-latest] # TODO: windows-latest | |
python-version: ['3.12'] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- run: pip install .[dev] | |
- run: pytest | |
build_and_test_pypy: | |
if: ${{ false }} # install for pypy is too slow due to grpc packages | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
python-version: ['pypy-3.7'] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'pip' | |
cache-dependency-path: 'requirements_test_pypy.txt' | |
- run: pip install . -r requirements_test_pypy.txt | |
- run: pytest |