Skip to content

Bump pytest-mock from 3.6.1 to 3.14.0 #13

Bump pytest-mock from 3.6.1 to 3.14.0

Bump pytest-mock from 3.6.1 to 3.14.0 #13

Workflow file for this run

name: testing
on:
push:
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: pip
cache-dependency-path: pyproject.toml
- name: Install dependencies & package
run: |
python -m pip install --upgrade pip
pip install .[tests,dev]
pip install .
- name: Lint
run: |
pre-commit run --all-files --show-diff-on-failure
- name: Test
run: |
pytest tests