Skip to content

fix tests for strict exception groups #107

fix tests for strict exception groups

fix tests for strict exception groups #107

Workflow file for this run

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 --upgrade pip
- 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