Ignore release-test in aclmanager

The openstack/release-test repository ACL gets picked up by
aclmanager when it updates ACL. Add it to the exceptions list,
and make sure that the list is actually used.

Change-Id: I7735898f53eafca15a8b4bb19459c576dc254d4e
This commit is contained in:
Thierry Carrez
2018-01-09 15:55:14 +01:00
parent 3eb4e8942e
commit 8728ab60b8

View File

@@ -37,9 +37,7 @@ urllib3.disable_warnings()
GERRIT_URL = 'https://review.openstack.org/'
EXCEPTIONS = ['openstack/training-labs',
'openstack/murano-apps',
'openstack/trove-image-builder']
EXCEPTIONS = ['openstack/release-test']
def repositories_list(deliverables_dir, series):
@@ -52,7 +50,8 @@ def repositories_list(deliverables_dir, series):
if not d.repos:
print('WARNING: no releases for {} in {}'.format(dname, series))
for repo in sorted(d.repos):
yield (d.team, repo)
if repo not in EXCEPTIONS:
yield (d.team, repo)
def patch_acls(args):