Skip to content

Docs: state plainly that adaptive stepping is convenience, not speed … #35

Docs: state plainly that adaptive stepping is convenience, not speed …

Docs: state plainly that adaptive stepping is convenience, not speed … #35

Workflow file for this run

name: tests
# Run the test suite on pushes and pull requests to the main branch.
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
env:
# Headless runner: use a non-interactive matplotlib backend, since grlp
# imports matplotlib.pyplot at import time.
MPLBACKEND: Agg
steps:
- uses: actions/checkout@v7
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}
- name: Install package with test dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[test]"
- name: Run tests
run: pytest -v