Ignore uncategorized failures for puppet jobs

The puppet-openstack project doesn't seem to use elastic-recheck
and drives down the percentage in the uncategorized bugs output
so let's blacklist the puppet jobs to turn down the noise it
generates.

Change-Id: I1668ec6b5c17fcc567982d7b8d395c17a17ed2ae
This commit is contained in:
Matt Riedemann 2016-04-19 09:45:12 -04:00
parent f657044ff3
commit 638f3e6a07
1 changed files with 3 additions and 1 deletions

View File

@ -39,7 +39,9 @@ EXCLUDED_JOBS = (
"operations-guide",
"openstack-manuals",
# Ansible
"ansible"
"ansible",
# Puppet
"puppet",
)
EXCLUDED_JOBS_REGEX = re.compile('(' + '|'.join(EXCLUDED_JOBS) + ')')