mirror of
https://github.com/kuhyx/testsAndMisc-archive.git
synced 2026-07-04 17:03:08 +02:00
14 lines
295 B
Python
14 lines
295 B
Python
|
|
"""Shared fixtures for FM24 searcher tests."""
|
||
|
|
|
||
|
|
from __future__ import annotations
|
||
|
|
|
||
|
|
import os
|
||
|
|
|
||
|
|
import pytest
|
||
|
|
|
||
|
|
|
||
|
|
@pytest.fixture(autouse=True, scope="session")
|
||
|
|
def _offscreen_qt() -> None:
|
||
|
|
"""Force offscreen Qt platform for headless testing."""
|
||
|
|
os.environ["QT_QPA_PLATFORM"] = "offscreen"
|