25541f1ec5
Running the freeze command as posargs to tox targets is unreliable as those commands may be interpreted as arguments to other commands rather than as commands themselves. For example `tox -epy26 -- pbr freeze` is likely pass 'pbr freeze' as test name filters to the py26 test runner. Instead what we want is to run pbr/pip freeze directly out of the venv in question. Change-Id: Iefb8ae4e82dcd31306d03befdc9766f2c1291571
30 lines
959 B
Bash
Executable File
30 lines
959 B
Bash
Executable File
#!/bin/bash -x
|
|
|
|
# Copyright 2013 OpenStack Foundation
|
|
#
|
|
# 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.
|
|
|
|
venv=pep8
|
|
|
|
tox -v -e$venv
|
|
rc=$?
|
|
|
|
[ -e .tox/$venv/bin/pbr ] && freezecmd=pbr || freezecmd=pip
|
|
|
|
echo "Begin $freezecmd freeze output from test virtualenv:"
|
|
echo "======================================================================"
|
|
.tox/${venv}/bin/${freezecmd} freeze
|
|
echo "======================================================================"
|
|
|
|
exit $rc
|