Minor fixes + tests + getSupportURL().

This commit is contained in:
Mikaël Capelle
2022-05-02 17:09:36 +02:00
parent 225c86d258
commit 6ea9d92b26
19 changed files with 203 additions and 51 deletions
+16
View File
@@ -0,0 +1,16 @@
# -*- encoding: utf-8 -*-
import os
import sys
from pathlib import Path
def pytest_configure():
global app
os.add_dll_directory(Path(os.getenv("QT_ROOT")).joinpath("bin"))
os.add_dll_directory(Path(os.getenv("UIBASE_PATH")).parent)
from PyQt6.QtWidgets import QApplication
app = QApplication(sys.argv)