--- a/src/eric7/Testing/Interfaces/TestExecutorBase.py Sat Dec 16 17:52:02 2023 +0100 +++ b/src/eric7/Testing/Interfaces/TestExecutorBase.py Sun Dec 17 17:15:19 2023 +0100 @@ -325,9 +325,9 @@ newPythonPath = os.pathsep.join(pythonpath) if currentPythonPath: newPythonPath += os.pathsep + currentPythonPath - environment = "PYTHONPATH={0}".format(newPythonPath) + environment = {"PYTHONPATH": newPythonPath} else: - environment = "" + environment = {} self.__debugger = debugger self.__debugger.debuggingFinished.connect(self.finished)