aboutsummaryrefslogtreecommitdiffstats
path: root/test/uitests.sikuli/uitests.py
blob: b723eb98ff572b2095b54fa8fc152c8ab101e355 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import os
import sys
sys.path.append(os.getenv('PYTHON_PKGS'))
import nose
import nose.config


myconfig = os.path.join(os.getcwd(), 'tests.sikuli', 'nose.cfg')
nose.config.config_files = [myconfig]
c = nose.config.Config()
c.configure()
nose.run()