Files
Mikaël Capelle 7cca7018b3 Move to VCPKG.
* Minor cleaning of CMakeLists.txt. Fix C++ warnings and Qt deprecation.
* Avoid using Python from virtual environment.
2024-08-09 21:10:50 +02:00

13 lines
195 B
Python

import os
import sys
from PyQt6.QtWidgets import QApplication
def pytest_configure():
global app
os.add_dll_directory(str(os.getenv("UIBASE_PATH")))
app = QApplication(sys.argv)