mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-8593: assign __testName if it is not getting set from test
This closes #537 Signed-off-by: SrikanteswaraRao Talluri <talluri@apache.org>
This commit is contained in:
parent
edfe6f4d4f
commit
17ecd65331
|
|
@ -168,6 +168,8 @@ class MarvinPlugin(Plugin):
|
|||
def beforeTest(self, test):
|
||||
self.__testModName = test.__str__()
|
||||
self.__testName = test.__str__().split()[0]
|
||||
if not self.__testName:
|
||||
self.__testName = "test"
|
||||
self.__testClient.identifier = '-'.\
|
||||
join([self.__identifier, self.__testName])
|
||||
if self.__tcRunLogger:
|
||||
|
|
|
|||
Loading…
Reference in New Issue