Skip to content

Update pytest-cov requirement from ~=4.1.0 to >=4.1,<5.1 #14

Update pytest-cov requirement from ~=4.1.0 to >=4.1,<5.1

Update pytest-cov requirement from ~=4.1.0 to >=4.1,<5.1 #14

Workflow file for this run

name: Test
on:
pull_request:
push:
jobs:
test:
strategy:
matrix:
platform: [ ubuntu-latest, macos-latest, windows-latest ]
python: [ '3.10', '3.11', '3.12' ]
runs-on: ${{ matrix.platform }}
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
-
name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
-
name: Run tests with tox
run: tox