Skip to content

Merge pull request #87 from rzyu45/Derive-Hessian-vector-product #44

Merge pull request #87 from rzyu45/Derive-Hessian-vector-product

Merge pull request #87 from rzyu45/Derive-Hessian-vector-product #44

Workflow file for this run

name: Run tests
on:
push:
pull_request:
types: [opened, synchronize, reopened, closed]
branches:
- '*'
jobs:
built_in_tests:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: 'pip' # caching pip dependencies
- run: |
pip install -r requirements.txt
cd docs/
pip install -r requirements.txt
cd ..
- run: | # run both independent pytest and doctest
pytest -vv