Home | History | Annotate | Download | only in scheduler

Lines Matching refs:total_executed

710         if int(job_stats['total_executed']) > 0:
711 body += "User tests executed: %s\n" % job_stats['total_executed']
1075 total_executed = len(rows) - n_test_jobs
1078 if total_executed > 0:
1079 success_rate = 100 - ((total_failed / float(total_executed)) * 100)
1083 stats['total_executed'] = total_executed
1085 stats['total_passed'] = total_executed - total_failed