Skip to content

MAINT: Change some methods to static, rename arguments, update tests … #631

MAINT: Change some methods to static, rename arguments, update tests …

MAINT: Change some methods to static, rename arguments, update tests … #631

Workflow file for this run

name: tests
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12']
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
pip install pytest
- name: Run tests
env:
PYTHONPATH: ${{ github.workspace }}
run: |
pytest tests/test_*.py