Added Enterprise test capabilities
This commit is contained in:
parent
4262956711
commit
59c3d21a2b
|
@ -16,10 +16,11 @@ tests = a.discover(start_dir='console',pattern='PAN*.py')
|
|||
#Run Enterprise tests
|
||||
is_enterprise = '1' == getenv('ENTERPRISE', False)
|
||||
if is_enterprise:
|
||||
tests = tests.addTests(a.discover(start_dir='console/enterprise',pattern='PAN*.py'))
|
||||
enterprise_tests = a.discover(start_dir='console/enterprise',pattern='PAN*.py')
|
||||
|
||||
c = ArticaTestResult()
|
||||
tests.run(c)
|
||||
enterprise_tests.run(c)
|
||||
|
||||
#Update Saouce Labs jobs
|
||||
sauce_client = SauceClient(environ["SAUCE_USERNAME"], environ["SAUCE_ACCESS_KEY"])
|
||||
|
|
Loading…
Reference in New Issue