You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

18 lines
439 B

import unittest
import platform
import sys
if platform.python_version() < '2.7':
unittest = __import__('unittest2')
else:
import unittest
if __name__ == '__main__':
testsuite = unittest.TestLoader().discover('testcases',pattern="*.py")
results = unittest.TextTestRunner(verbosity=100).run(testsuite)
# Return an error code if any of the testsuite tests fail
if not results.wasSuccessful():
sys.exit(1)