Home | History | Annotate | Download | only in scheduler

Lines Matching refs:total_executed

755         if int(job_stats['total_executed']) > 0:
756 body += "User tests executed: %s\n" % job_stats['total_executed']
1045 total_executed = len(rows) - n_test_jobs
1048 if total_executed > 0:
1049 success_rate = 100 - ((total_failed / float(total_executed)) * 100)
1053 stats['total_executed'] = total_executed
1055 stats['total_passed'] = total_executed - total_failed