Restored the test file discovery pattern.

This commit is contained in:
Ramon Novoa 2016-09-21 10:43:13 +02:00
parent ac11cfdf2c
commit bce9f02957
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ is_enterprise = '1' == getenv('ENTERPRISE', False)
a = TestLoader()
tests = a.discover(start_dir='console',pattern='ACL.py')
tests = a.discover(start_dir='console',pattern='*.py')
c = ArticaTestResult()
tests.run(c)