Home | History | Annotate | Download | only in scheduler

Lines Matching refs:total_executed

711         if int(job_stats['total_executed']) > 0:
712 body += "User tests executed: %s\n" % job_stats['total_executed']
1031 total_executed = len(rows) - n_test_jobs
1034 if total_executed > 0:
1035 success_rate = 100 - ((total_failed / float(total_executed)) * 100)
1039 stats['total_executed'] = total_executed
1041 stats['total_passed'] = total_executed - total_failed