mirror of
https://github.com/ModOrganizer2/modorganizer-plugin_python.git
synced 2026-07-27 14:03:33 -07:00
8 lines
194 B
Python
8 lines
194 B
Python
import os
|
|
from pathlib import Path
|
|
|
|
|
|
def pytest_configure():
|
|
os.add_dll_directory(Path(os.getenv("QT_ROOT")).joinpath("bin"))
|
|
os.add_dll_directory(Path(os.getenv("UIBASE_PATH")).parent)
|