13 lines
297 B
Python
13 lines
297 B
Python
"""Shared pytest fixtures."""
|
|
import pytest
|
|
from PySide6.QtWidgets import QApplication
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
def qapp():
|
|
"""Provide a QApplication instance for the test session."""
|
|
app = QApplication.instance()
|
|
if app is None:
|
|
app = QApplication([])
|
|
yield app
|