Skip to content

Experiment with pytest. #143

Experiment with pytest.

Experiment with pytest. #143

Workflow file for this run

name: Tests
on:
workflow_dispatch:
push:
pull_request:
schedule:
- cron: '0 23 * * 4'
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
with:
lfs: true
- name: Checkout Git-LFS objects
run: git lfs checkout
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .
python -m pip install .[test]
- name: Test with pytest
run: |
export PYTHONWARNINGS="always"
pytest