Merge "[www] Handle pynotedb and subunitsql"

This commit is contained in:
Jenkins 2017-09-11 21:00:57 +00:00 committed by Gerrit Code Review
commit 62391bdd08
2 changed files with 20 additions and 1 deletions

View File

@ -315,6 +315,13 @@ _IGNORED_REPOS = [
'openstack-infra/releasestatus',
]
# List of infra repos that publish to the normal location (/REPO/) and
# not to /infra/REPO.
_INFRA_REPOS_EXCEPTION = [
'openstack-infra/pynotedb',
'openstack-infra/subunit2sql',
]
def _get_official_repos():
"""Return a tuple containing lists of all official repos.
@ -341,7 +348,11 @@ def _get_official_repos():
# be generated.
continue
seen_repos.add(repo)
if repo not in _IGNORED_REPOS:
# Overwrite infra list for a few repositories
if repo in _INFRA_REPOS_EXCEPTION:
regular_repos.append({'name': repo,
'base': repo.rsplit('/')[-1]})
elif repo not in _IGNORED_REPOS:
add({'name': repo, 'base': repo.rsplit('/')[-1]})
return (regular_repos, infra_repos)

View File

@ -861,6 +861,14 @@
service: Bridge between container framework and OpenStack abstractions
type: service
- name: pynotedb
service: Python parser for notedb
type: tool
- name: subunit2sql
service: Tooling for converting subunit streams into a SQL DB
type: tool
# Projects that do not appear in the service-types-authority list:
# - kuryr
# - dragonflow