Skip to content

build(deps-dev): bump pytest-mock from 3.8.2 to 3.14.0 #81

build(deps-dev): bump pytest-mock from 3.8.2 to 3.14.0

build(deps-dev): bump pytest-mock from 3.8.2 to 3.14.0 #81

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Test on multiple Python versions and on multiple operating systems
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"] # "3.12"
os: [ubuntu-latest, windows-latest] # macos-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }} on ${{ matrix.os }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip" # caching pip dependencies
cache-dependency-path: "**/requirements*.txt"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
python -m pip install -r requirements-dev.txt
- name: Lint with pre-commit
run: |
pre-commit run --all-files -c .pre-commit-config.yaml
- name: Test with pytest
run: |
pytest -v --alluredir=allure_results --cov-report=html --cov --cov-config=.coveragerc --random-order
coverage report -m
- name: Test notebooks on non-Windows runners
if: runner.os != 'Windows' && github.ref == 'refs/heads/main' && github.event_name == 'push'
run: |
PYDEVD_DISABLE_FILE_VALIDATION=1 python -m ipykernel install --user --name instanovo
pytest --nbmake "./notebooks" --nbmake-kernel=instanovo --nbmake-timeout=10000
- name: Test notebooks on Windows
if: runner.os == 'Windows' && github.ref == 'refs/heads/main' && github.event_name == 'push'
run: |
$env:PYDEVD_DISABLE_FILE_VALIDATION=1; python -m ipykernel install --user --name instanovo
pytest --nbmake "./notebooks" --nbmake-kernel=instanovo --nbmake-timeout=10000