Merge "[www] Handle pynotedb and subunitsql"
This commit is contained in:
commit
62391bdd08
@ -315,6 +315,13 @@ _IGNORED_REPOS = [
|
|||||||
'openstack-infra/releasestatus',
|
'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():
|
def _get_official_repos():
|
||||||
"""Return a tuple containing lists of all official repos.
|
"""Return a tuple containing lists of all official repos.
|
||||||
@ -341,7 +348,11 @@ def _get_official_repos():
|
|||||||
# be generated.
|
# be generated.
|
||||||
continue
|
continue
|
||||||
seen_repos.add(repo)
|
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]})
|
add({'name': repo, 'base': repo.rsplit('/')[-1]})
|
||||||
return (regular_repos, infra_repos)
|
return (regular_repos, infra_repos)
|
||||||
|
|
||||||
|
@ -861,6 +861,14 @@
|
|||||||
service: Bridge between container framework and OpenStack abstractions
|
service: Bridge between container framework and OpenStack abstractions
|
||||||
type: service
|
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:
|
# Projects that do not appear in the service-types-authority list:
|
||||||
# - kuryr
|
# - kuryr
|
||||||
# - dragonflow
|
# - dragonflow
|
||||||
|
Loading…
Reference in New Issue
Block a user