Skip to content

Commit 07014e0

Browse files
committed
Make osc-functional-devstack-tips actually use tips
The base job has tox_install_siblings: false - which we want. But that means we need tox_install_siblings: true on the tips job. While we're at it - add fetch-tox-output so that we have tox log files in the fetched build output for easier verification of what wound up installed. Don't look for ResourceNotFound string in test The string ResourceNotFound is not in the error string anymore. Look for the text that is. Depends-On: https://review.openstack.org/541033 Change-Id: Id6de1485bcafb41f238f3e74277094ce64a6acf4
1 parent 25e60a4 commit 07014e0

3 files changed

Lines changed: 3 additions & 1 deletion

File tree

.zuul.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,7 @@
175175
s-object: false
176176
s-proxy: false
177177
tox_envlist: functional
178+
tox_install_siblings: true
178179

179180
- project-template:
180181
name: osc-tox-unit-tips

openstackclient/tests/functional/common/test_extension.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def test_extension_show_not_exist(self):
105105
try:
106106
self.openstack('extension show ' + name)
107107
except tempest_exc.CommandFailed as e:
108-
self.assertIn('ResourceNotFound', str(e))
108+
self.assertIn('No Extension found for', str(e))
109109
self.assertIn(name, str(e))
110110
else:
111111
self.fail('CommandFailed should be raised')

playbooks/osc-devstack/post.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
- hosts: all
22
roles:
3+
- fetch-tox-output
34
- fetch-subunit-output

0 commit comments

Comments
 (0)