Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
195 B
Python
Raw Permalink Normal View History

2022-04-29 21:11:59 +02:00
import os
2022-04-29 22:23:57 +02:00
import sys
2025-05-29 11:03:51 +02:00
from PyQt6.QtWidgets import QApplication
2022-04-29 21:11:59 +02:00
def pytest_configure():
2022-04-29 22:23:57 +02:00
global app
os.add_dll_directory(str(os.getenv("UIBASE_PATH")))
2022-04-29 22:23:57 +02:00
app = QApplication(sys.argv)