Skip to content

docs: finalize task flow specification (#66) #40

docs: finalize task flow specification (#66)

docs: finalize task flow specification (#66) #40

name: Test Suite (Parallel)
on:
pull_request:
branches: ["main"]
push:
branches: ["main"]
paths:
- ".github/workflows/tests-parallel.yml"
- "src/**"
- "tests/**"
- "pyproject.toml"
jobs:
pytest-parallel:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e .
python -m pip install pytest-xdist
- name: Run tests in parallel
run: python -m pytest tests/ -v -n auto