Fix .gitreview and tox to use stable/ocata

NB this does not include the ansible-role-requirements change.
That is happening here: https://review.openstack.org/#/c/430836/

Change-Id: I336a66cdeb19a4230b947138604e02b3fee62d64
This commit is contained in:
Andy McCrae 2017-02-09 13:58:53 +00:00
parent c9d4ca628e
commit 16a2fdd0a5
2 changed files with 4 additions and 3 deletions

View File

@ -2,3 +2,4 @@
host=review.openstack.org
port=29418
project=openstack/openstack-ansible-os_almanach.git
defaultbranch=stable/ocata

View File

@ -7,7 +7,7 @@ envlist = docs,linters,functional
[testenv]
usedevelop = True
install_command =
pip install -c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt} {opts} {packages}
pip install -c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt?h=stable/ocata} {opts} {packages}
deps =
-r{toxinidir}/test-requirements.txt
commands =
@ -56,7 +56,7 @@ commands =
[testenv:tests_clone]
commands =
bash -c "if [ ! -d "{toxinidir}/tests/common" ]; then \
git clone https://git.openstack.org/openstack/openstack-ansible-tests {toxinidir}/tests/common; \
git clone -b stable/ocata https://git.openstack.org/openstack/openstack-ansible-tests {toxinidir}/tests/common; \
fi"
@ -83,7 +83,7 @@ commands =
[testenv:ansible]
deps =
{[testenv]deps}
-rhttps://git.openstack.org/cgit/openstack/openstack-ansible-tests/plain/test-ansible-deps.txt
-rhttps://git.openstack.org/cgit/openstack/openstack-ansible-tests/plain/test-ansible-deps.txt?h=stable/ocata
[testenv:ansible-syntax]