Another update to fix windows tests (pymod with Python 3.8+3.9)

This commit is contained in:
Matthias Koefferlein 2021-04-18 15:46:55 +02:00
parent de83fb7e8a
commit 6a77c3ae9a
2 changed files with 2 additions and 1 deletions

View File

@ -2,6 +2,7 @@
import sys import sys
import os import os
import unittest import unittest
import testprep
sys.path.append(os.path.join(os.path.dirname(__file__), "..", "python")) sys.path.append(os.path.join(os.path.dirname(__file__), "..", "python"))

View File

@ -2,7 +2,7 @@
import os import os
# Whatever drove these people to drop PATH support for Windows in Python 3.8 (bpo-36085) # Whatever drove these people to drop PATH support for Windows in Python 3.8 (bpo-36085)
# they at least had the mercy to let us emulate it through os.add_dll_directory. # they at least had mercy and let us emulate PATH through os.add_dll_directory.
external_dll_path = os.getenv("KLAYOUT_PYMOD_DLL_PATH") external_dll_path = os.getenv("KLAYOUT_PYMOD_DLL_PATH")
if ("add_dll_directory" in os.__dict__) and external_dll_path is not None: if ("add_dll_directory" in os.__dict__) and external_dll_path is not None: