Merge "Add support for custom namespaces"

This commit is contained in:
Zuul 2017-12-09 15:46:46 +00:00 committed by Gerrit Code Review
commit 1992485332
2 changed files with 6 additions and 1 deletions

View File

@ -51,6 +51,9 @@ a valid YAML/JSON file formatted like this:
launchpad_project: tripleo
- name: tripleo-incubator
launchpad_project: tripleo
#Add a custom namespace like this. Defaults to 'openstack/'
- name: openstack-infra/tripleo-ci
launchpad_project: tripleo
## License

View File

@ -4,8 +4,10 @@ import json
def reviews(project, status="open", branch="master"):
arr = []
if project.find('/') < 0:
project = 'openstack/%s' % project
cmd = 'ssh review gerrit' \
' query "status: %s project: openstack/%s branch: %s"' \
' query "status: %s project: %s branch: %s"' \
' --current-patch-set --format JSON' \
% (status, project, branch)
p = subprocess.Popen([cmd], shell=True, stdin=subprocess.PIPE,