You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
print '\n****Running the ' + str(test_case) + ' case****'
starting_dir = os.path.abspath(os.curdir)
try:
os.chdir(test_case)
execfile('run.py')
os.chdir(starting_dir)
print '****The ' + str(test_case) + ' test case ran successfully****\n'
status = str(test_case) + ': SUCCESS'
except:
print '****The ' + str(test_case) + ' test case failed. For the specific information on the error run the ' + str(test_case) + ' test case manually****\n'