Skip to content

Bump pytest from 7.4.3 to 8.3.1 #74

Bump pytest from 7.4.3 to 8.3.1

Bump pytest from 7.4.3 to 8.3.1 #74

Workflow file for this run

name: Unit tests
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
name: Set up Python
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Lint with ruff
run: |
ruff .
- name: Test with pytest
run: |
PYTHONPATH=`pwd` pytest --cache-clear --cov=. tests