--- a/eric7/Project/Project.py Sun May 15 18:08:31 2022 +0200 +++ b/eric7/Project/Project.py Mon May 16 17:22:43 2022 +0200 @@ -525,6 +525,7 @@ }, "EOL": -1, "DOCSTRING": "", + "TESTING_FRAMEWORK": "", } self.__initDebugProperties() @@ -3766,6 +3767,18 @@ return execPath + def getProjectTestingFramework(self): + """ + Public method to get the testing framework name of the project. + + @return testing framework name of the project + @rtype str + """ + try: + return self.pdata["TESTING_FRAMEWORK"] + except KeyError: + return "" + def __isInPdata(self, fn): """ Private method used to check, if the passed in filename is project