I am new to sikuli and python 2.4 in general. I have a test case setup as follows:
class testCase(unitTest.testCase):
def setUp(self):
try:
#do setup
except:
#handle error, trace
def tearDown(self)
try:
#do tearDown
except:
#handle error
def testMethod(self)
try:
#do test method
except:
#handle error
And I'm trying to find a suitable test runner to be able to generate a .xml and a .html test result. Can anyone point me in the right direction. Btw I'm doing try, except because I'm logging the error, and the steps of my test case to an external .log file. I would like to create a suitable test runner in which i can add all my test cases and generate test report .html. Is that possible? Thanks in advance.