Update Deckhand test-/requirements.txt

This simply updates Deckhand's package versions in
test-requirements.txt and requirements.txt using `pur -r` command
line tool.

Change-Id: If4bbd85190502c52a7f10adf6af750172b54c234
This commit is contained in:
Felipe Monteiro 2018-05-15 20:36:43 +01:00
parent 0143b2d727
commit 3353833dba
4 changed files with 28 additions and 23 deletions

View File

@ -3,39 +3,39 @@
# process, which may cause wedges in the gate later. # process, which may cause wedges in the gate later.
# Hacking already pins down pep8, pyflakes and flake8 # Hacking already pins down pep8, pyflakes and flake8
hacking>=1.0.0 # Apache-2.0 hacking>=1.1.0 # Apache-2.0
alembic>=0.9.6 # MIT alembic>=0.9.6 # MIT
falcon>=1.4.1 # Apache-2.0 falcon>=1.4.1 # Apache-2.0
pbr!=2.1.0,>=3.1.1 # Apache-2.0 pbr!=2.1.0,>=4.0.3 # Apache-2.0
PasteDeploy>=1.5.2 # MIT PasteDeploy>=1.5.2 # MIT
Paste # MIT Paste # MIT
Routes>=2.4.1 # MIT Routes>=2.4.1 # MIT
keystoneauth1>=3.4.0 # Apache-2.0 keystoneauth1>=3.6.1 # Apache-2.0
networkx==2.1 networkx==2.1
six>=1.11.0 # MIT six>=1.11.0 # MIT
stevedore>=1.28.0 # Apache-2.0 stevedore>=1.28.0 # Apache-2.0
python-keystoneclient>=3.15.0 # Apache-2.0 python-keystoneclient>=3.16.0 # Apache-2.0
python-memcached==1.59 python-memcached==1.59
keystonemiddleware>=4.21.0 # Apache-2.0 keystonemiddleware>=5.1.0 # Apache-2.0
psycopg2==2.7.4 psycopg2==2.7.4
uwsgi==2.0.16 uwsgi==2.0.17
jsonpath-ng==1.4.3 jsonpath-ng==1.4.3
jsonschema==2.6.0 jsonschema==2.6.0
oslo.cache>=1.28.0 # Apache-2.0 oslo.cache>=1.30.1 # Apache-2.0
oslo.concurrency>=3.25.0 # Apache-2.0 oslo.concurrency>=3.27.0 # Apache-2.0
oslo.config!=4.3.0,!=4.4.0,>=5.2.0 # Apache-2.0 oslo.config!=4.3.0,!=4.4.0 # Apache-2.0
oslo.context>=2.20.0 # Apache-2.0 oslo.context>=2.20.0 # Apache-2.0
oslo.messaging!=5.25.0,>=5.35.0 # Apache-2.0 oslo.messaging!=5.25.0,>=6.2.0 # Apache-2.0
oslo.db>=4.33.0 # Apache-2.0 oslo.db>=4.38.0 # Apache-2.0
oslo.i18n!=3.15.2,>=3.19.0 # Apache-2.0 oslo.i18n!=3.15.2,>=3.20.0 # Apache-2.0
oslo.log>=3.36.0 # Apache-2.0 oslo.log>=3.38.1 # Apache-2.0
oslo.middleware>=3.34.0 # Apache-2.0 oslo.middleware>=3.35.0 # Apache-2.0
oslo.policy>=1.33.1 # Apache-2.0 oslo.policy>=1.35.0 # Apache-2.0
oslo.serialization!=2.19.1,>=2.24.0 # Apache-2.0 oslo.serialization!=2.19.1,>=2.25.0 # Apache-2.0
oslo.utils>=3.35.0 # Apache-2.0 oslo.utils>=3.36.2 # Apache-2.0
# TODO(alanmeadows) # TODO(alanmeadows)
# this must match the container service # this must match the container service

View File

@ -3,15 +3,17 @@
# process, which may cause wedges in the gate later. # process, which may cause wedges in the gate later.
# Hacking already pins down pep8, pyflakes and flake8 # Hacking already pins down pep8, pyflakes and flake8
hacking>=1.0.0 # Apache-2.0 hacking>=1.1.0 # Apache-2.0
coverage!=4.4,>=4.5.1 # Apache-2.0 coverage!=4.4,>=4.5.1 # Apache-2.0
fixtures>=3.0.0 # Apache-2.0/BSD fixtures>=3.0.0 # Apache-2.0/BSD
python-subunit>=1.2.0 # Apache-2.0/BSD python-subunit>=1.3.0 # Apache-2.0/BSD
oslotest>=3.2.0 # Apache-2.0 oslotest>=3.4.2 # Apache-2.0
os-testr>=1.0.0 # Apache-2.0 os-testr>=1.0.0 # Apache-2.0
testrepository>=0.0.20 # Apache-2.0/BSD testrepository>=0.0.20 # Apache-2.0/BSD
testtools>=2.3.0 # MIT testtools>=2.3.0 # MIT
bandit>=1.4.0 # Apache-2.0 bandit>=1.4.0 # Apache-2.0
# NOTE(felipemonteiro): Pin here because later versions require that
# content-type be present in empty responses, which is apparently a bug.
gabbi==1.35.1 gabbi==1.35.1
pifpaf>=0.10.0 # Apache-2.0 pifpaf>=0.10.0 # Apache-2.0

View File

@ -51,9 +51,8 @@ function deploy_osh_keystone_barbican {
make dev-deploy setup-host make dev-deploy setup-host
make dev-deploy k8s make dev-deploy k8s
# NOTE(fmontei): Use this version because newer versions might cd ${CURRENT_DIR}
# be slightly different in terms of test syntax in YAML files. sudo -H -E pip install -r test-requirements.txt
sudo -H -E pip install gabbi==1.35.1
cd ${OSH_PATH} cd ${OSH_PATH}
# Setup clients on the host and assemble the charts¶ # Setup clients on the host and assemble the charts¶

View File

@ -13,6 +13,10 @@ trap cleanup EXIT
# Instantiate an ephemeral PostgreSQL DB and print out the `pifpaf` environment # Instantiate an ephemeral PostgreSQL DB and print out the `pifpaf` environment
# variables for debugging purposes. # variables for debugging purposes.
set -ex set -ex
if [ -z $(which pg_config) ]; then
sudo apt-get install libpq-dev -y
fi
eval `pifpaf run postgresql` eval `pifpaf run postgresql`
env | grep PIFPAF env | grep PIFPAF
set +ex set +ex