Skip to content

Removing Pypy3.10 from the tox.yml file for now until we can fix the github action and tests to work with it. #32

Removing Pypy3.10 from the tox.yml file for now until we can fix the github action and tests to work with it.

Removing Pypy3.10 from the tox.yml file for now until we can fix the github action and tests to work with it. #32

Workflow file for this run

---
name: Test
on: [pull_request, push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, "3.10", 3.11, 3.12]
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 dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install pytest pytest-cov coverage cached-property
python setup.py clean build install
- name: Run test
run: pytest
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}