Add support for custom namespaces

Defaults to 'openstack/' for backwards compat.

Change-Id: I320f6fe8d9926140660bed021624d3db1af23c7e
This commit is contained in:
Dan Prince 2017-12-08 10:31:53 -05:00
parent 9852644551
commit cca8e6ed63
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,