Files
modorganizer-plugin_python/tests/python/conftest.py
T

17 lines
328 B
Python
Raw Normal View History

2022-04-29 22:23:57 +02:00
# -*- encoding: utf-8 -*-
2022-04-29 21:11:59 +02:00
import os
2022-04-29 22:23:57 +02:00
import sys
2022-04-29 21:11:59 +02:00
from pathlib import Path
def pytest_configure():
2022-04-29 22:23:57 +02:00
global app
2022-04-29 21:11:59 +02:00
os.add_dll_directory(Path(os.getenv("QT_ROOT")).joinpath("bin"))
os.add_dll_directory(Path(os.getenv("UIBASE_PATH")).parent)
2022-04-29 22:23:57 +02:00
from PyQt6.QtWidgets import QApplication
app = QApplication(sys.argv)