4912f7d5d0
Rewrite list_unreleased_changes as python format and add new features. By default it will behave as the previous version of this command (the shell script). Few new feature have been added in these changes to allow us to more easily handle outputs in scripts. Features added: - allow user to retrieve results in json format - allow user to retrieve results in yaml format - allow user to ignore project not yet released The shell script entry-point (tools) is still there but it will call the python command in a venv instead of directly implement features. Also the python version allow us to more surround this tools with unit tests. Change-Id: Iaf86ecb1589c40102acb621b23ea12d71ed453bb
37 lines
1.2 KiB
Bash
Executable File
37 lines
1.2 KiB
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
#
|
|
# Provide a list of the unreleased changes in the given repositories
|
|
|
|
if [[ $# -lt 2 ]]; then
|
|
echo "Usage: $(basename $0) <branch> <repo> [<repo>...]"
|
|
echo "repo should be e.g. openstack/glance"
|
|
echo
|
|
echo "Example: $(basename $0) victoria oslo.rootwrap"
|
|
echo "Example: $(basename $0) independent reno bugfix"
|
|
echo
|
|
echo "For further details about how to use the command:"
|
|
echo "tox -e venv -- list-unreleased-changes --help"
|
|
exit 1
|
|
fi
|
|
|
|
if [[ -z "$VIRTUAL_ENV" ]]; then
|
|
if [[ ! -d .tox/venv ]]; then
|
|
tox -e venv --notest
|
|
fi
|
|
source ./.tox/venv/bin/activate
|
|
fi
|
|
|
|
list-unreleased-changes $@
|