Skip to content

record: consolidate the genuine-signal datapoint ($0 plan, direction B) #5

record: consolidate the genuine-signal datapoint ($0 plan, direction B)

record: consolidate the genuine-signal datapoint ($0 plan, direction B) #5

Workflow file for this run

name: tests
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
pytest:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[dev]
- name: Run fast tests
run: pytest -v -m "not slow and not requires_ibm"
- name: Run slow regression tests
if: github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch'
run: pytest -v -m "slow and not requires_ibm"