Question #614515 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/614515

    Status: Answered => Solved

stewazy confirmed that the question is solved:
import unittest
import sys
import logging
import os
import traceback

from sikuli import *


class TestClass (unittest.TestCase):
    def setUp(self):
        try:               
           #do smth
        except:
           #handle error and raise same error
            raise
            
                
    def tearDown(self):
        try:
            #dosmth
        except:
            #handle error and raise same exception
            raise        
 
    def testSingleTicket(self):
        try:
          #do smth
        except:
           #handle error and raise same error
            raise

I found a suitable solution for my problem. Here is the solution.

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for Sikuli.

_______________________________________________
Mailing list: https://launchpad.net/~sikuli-driver
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp

Reply via email to