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>
12 lines
247 B
Python
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"]
|