Skip to content

Bump pytest from 7.2.0 to 7.4.0 #570

Bump pytest from 7.2.0 to 7.4.0

Bump pytest from 7.2.0 to 7.4.0 #570

Workflow file for this run

name: Linting
on:
push:
branches:
- master
- "v0.7"
pull_request:
jobs:
pre-commit:
name: Pre-commit
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, "3.10"]
runs-on: ubuntu-latest
env:
OS: ubuntu-latest
PYTHON: ${{ matrix.python-version }}
steps:
- name: Check out the repository
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: abatilo/actions-poetry@v2.2.0
with:
poetry-version: 1.2.2
- name: Install dependencies
run: poetry install
- name: Run pre-commit on all files
run: |
poetry run pre-commit run --all-files --show-diff-on-failure --color=always
- name: Run pytest with coverage
run: |
poetry run pip install coverage
poetry run coverage run -m pytest
poetry run coverage xml
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v3
with:
env_vars: OS,PYTHON
fail_ci_if_error: true
flags: unittests
verbose: true