We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6821cc8 + 650391f commit 055bac1Copy full SHA for 055bac1
teuthology/dispatcher/supervisor.py
@@ -42,11 +42,12 @@ def main(args):
42
except SkipJob:
43
return 0
44
45
- report.try_push_job_info({
46
- 'name': job_config['name'],
47
- 'job_id': job_config['job_id'],
48
- 'pid': os.getpid(),
49
- })
+ if not (job_config.get('first_in_suite') or job_config.get('last_in_suite')):
+ report.try_push_job_info({
+ 'name': job_config['name'],
+ 'job_id': job_config['job_id'],
+ 'pid': os.getpid(),
50
+ })
51
52
# reimage target machines before running the job
53
if 'targets' in job_config:
0 commit comments