This commit is contained in:
boccioli_m
2017-10-17 14:47:47 +02:00
parent 3985d4a76e
commit 15197273bf
2 changed files with 5 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
#TestingList for pshell: configuration properties
#Tue Oct 17 14:46:39 CEST 2017
#Tue Oct 17 14:47:33 CEST 2017
customPanel=
showEnabledTestsOnly=true
listFilter=rps-test

View File

@@ -15,11 +15,11 @@ def startTest(testName, DEVICE, params):
ret = 'Test failed'
status = False
# put the whole custom code under try/catch.
# get the path of this script:
testPath = inspect.getfile(inspect.currentframe())
# init the testing tool class:
test = TestingTool(testName, testPath, DEVICE, params)
try:
# get the path of this script:
testPath = inspect.getfile(inspect.currentframe())
# init the testing tool class:
test = TestingTool(testName, testPath, DEVICE, params)
################ END OF Init #####################
######### WRITE YOUR CODE HERE BELOW #############