eric7/Project/Project.py

branch
unittest
changeset 9065
39405e6eba20
parent 9056
af7c8c7b7c62
child 9070
eab09a1ab8ce
equal deleted inserted replaced
9064:339bb8c8007d 9065:39405e6eba20
523 "CompressionDisable": False, 523 "CompressionDisable": False,
524 "PathPrefix": "", 524 "PathPrefix": "",
525 }, 525 },
526 "EOL": -1, 526 "EOL": -1,
527 "DOCSTRING": "", 527 "DOCSTRING": "",
528 "TESTING_FRAMEWORK": "",
528 } 529 }
529 530
530 self.__initDebugProperties() 531 self.__initDebugProperties()
531 532
532 self.pudata = { 533 self.pudata = {
3764 .getVirtualenvExecPath(venvName) 3765 .getVirtualenvExecPath(venvName)
3765 ) 3766 )
3766 3767
3767 return execPath 3768 return execPath
3768 3769
3770 def getProjectTestingFramework(self):
3771 """
3772 Public method to get the testing framework name of the project.
3773
3774 @return testing framework name of the project
3775 @rtype str
3776 """
3777 try:
3778 return self.pdata["TESTING_FRAMEWORK"]
3779 except KeyError:
3780 return ""
3781
3769 def __isInPdata(self, fn): 3782 def __isInPdata(self, fn):
3770 """ 3783 """
3771 Private method used to check, if the passed in filename is project 3784 Private method used to check, if the passed in filename is project
3772 controlled.. 3785 controlled..
3773 3786

eric ide

mercurial