Skip to content

Update pytest requirement from <8.2 to <8.4 #185

Update pytest requirement from <8.2 to <8.4

Update pytest requirement from <8.2 to <8.4 #185

Workflow file for this run

---
name: Python testing
on: pull_request
permissions: read-all
jobs:
test:
name: test python code
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
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 Tox
run: pip install tox
- name: Run Tox
run: |
# Run tox using the version of Python in `PATH`
tox -e py
tox -e bandit
tox -e cobertura