Ilya 9d6ceb8145 chore: scaffold project, plan, and toolchain
Set up PyQt6 + QGraphicsView pipeline-editor skeleton, requirements,
pytest headless config, and the actionable implementation plan under
docs/plan.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-07-02 23:08:20 +02:00

12 lines
247 B
Python

"""Shared pytest fixtures. Forces a headless Qt platform for CI-safe runs."""
import os
os.environ.setdefault("QT_QPA_PLATFORM", "offscreen")
import pytest
@pytest.fixture(scope="session")
def qapp_args():
return ["pipeline-editor-tests"]