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 |