Skip to content

[Bug] GraphWorkflow: report cycles as an explicit error instead of silently flattening (#1757 part 1) #2286

[Bug] GraphWorkflow: report cycles as an explicit error instead of silently flattening (#1757 part 1)

[Bug] GraphWorkflow: report cycles as an explicit error instead of silently flattening (#1757 part 1) #2286

Workflow file for this run

name: Run Tests
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v6
- name: Set up Python 3.10
uses: actions/setup-python@v6
with:
python-version: "3.10"
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
- name: Install dependencies
run: |
poetry install --with test
- name: Run tests
run: |
poetry run pytest tests/ -v