Anton Danchenko 4ad021691f
added runner and testrail report
Signed-off-by: Anton Danchenko <ant.danchenko@gmail.com>
2018-11-16 11:53:40 +02:00

21 lines
375 B
Python

try:
import org.sikuli.script.SikulixForJython
from sikuli import *
except Exception:
pass
class BaseTestCase:
try:
Settings.ActionLogs = 0
Settings.MinSimilarity = 0.4
except NameError:
pass
def setup_method(self, method):
openApp('/home/squashfs-root/AppRun')
def teardown_method(self, method):
pass