Skip to content

Fix from_task() to use task.devices instead of nidaqmx.system.System.… #2

Fix from_task() to use task.devices instead of nidaqmx.system.System.…

Fix from_task() to use task.devices instead of nidaqmx.system.System.… #2

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Test (Python ${{ matrix.python-version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync
- name: Run unit tests
run: uv run pytest -v