Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Eliminate mypy errors in src/nwb2bids/bids_models/_probes.py #894

Eliminate mypy errors in src/nwb2bids/bids_models/_probes.py

Eliminate mypy errors in src/nwb2bids/bids_models/_probes.py #894

Workflow file for this run

name: Deploy tests
on:
pull_request:
types: [synchronize, opened, reopened, ready_for_review]
merge_group:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
Tests:
uses: ./.github/workflows/testing.yml
with:
pytest_markexpr: 'not remote'
os_list: '["windows-2022","windows-latest","macos-15-intel","macos-latest","ubuntu-latest"]'
python_list: '["3.10","3.11","3.12","3.13"]'
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
DocTests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e . --group docs
- name: Run doc tests
run: python -m pytest docs/ -v