Skip to content

pyproject.toml - downgrade pytest to 7 for tests #159

pyproject.toml - downgrade pytest to 7 for tests

pyproject.toml - downgrade pytest to 7 for tests #159

Workflow file for this run

name: Test
on:
push
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
if: matrix.os == 'ubuntu-latest'
with:
python-version: '3.7'
- name: Install
run: pip install .[tests]
- name: Run tests
run: pytest -vs ./tests