Skip to content

Merge pull request #38 from jcharkow/test_new #1

Merge pull request #38 from jcharkow/test_new

Merge pull request #38 from jcharkow/test_new #1

Workflow file for this run

name: continuous-integration
on: [push]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[all,testing]
# ensure matplotlib and plotly version is the same as when generated tests
pip install matplotlib==3.9.2
pip install plotly==5.24.1
- name: Test
run: |
python -m pytest --snapshot-warn-unused test/ # do not fail if unused snapshot, just warn