[corey.bryant,trivial] Add icehouse git amulet tests back with new branches.
This commit is contained in:
parent
e245b247be
commit
60ac9903fb
9
tests/050-basic-trusty-icehouse-git
Executable file
9
tests/050-basic-trusty-icehouse-git
Executable file
@ -0,0 +1,9 @@
|
|||||||
|
#!/usr/bin/python
|
||||||
|
|
||||||
|
"""Amulet tests on a basic Glance git deployment on trusty-icehouse."""
|
||||||
|
|
||||||
|
from basic_deployment import GlanceBasicDeployment
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
deployment = GlanceBasicDeployment(series='trusty', git=True)
|
||||||
|
deployment.run_tests()
|
@ -66,16 +66,21 @@ class GlanceBasicDeployment(OpenStackAmuletDeployment):
|
|||||||
"""Configure all of the services."""
|
"""Configure all of the services."""
|
||||||
glance_config = {}
|
glance_config = {}
|
||||||
if self.git:
|
if self.git:
|
||||||
branch = 'stable/' + self._get_openstack_release_string()
|
release = self._get_openstack_release_string()
|
||||||
|
reqs_branch = 'stable/' + release
|
||||||
|
if self._get_openstack_release() == self.trusty_icehouse:
|
||||||
|
glance_branch = release + '-eol'
|
||||||
|
else:
|
||||||
|
glance_branch = 'stable/' + release
|
||||||
amulet_http_proxy = os.environ.get('AMULET_HTTP_PROXY')
|
amulet_http_proxy = os.environ.get('AMULET_HTTP_PROXY')
|
||||||
openstack_origin_git = {
|
openstack_origin_git = {
|
||||||
'repositories': [
|
'repositories': [
|
||||||
{'name': 'requirements',
|
{'name': 'requirements',
|
||||||
'repository': 'git://github.com/openstack/requirements',
|
'repository': 'git://github.com/openstack/requirements',
|
||||||
'branch': branch},
|
'branch': reqs_branch},
|
||||||
{'name': 'glance',
|
{'name': 'glance',
|
||||||
'repository': 'git://github.com/openstack/glance',
|
'repository': 'git://github.com/openstack/glance',
|
||||||
'branch': branch},
|
'branch': glance_branch},
|
||||||
],
|
],
|
||||||
'directory': '/mnt/openstack-git',
|
'directory': '/mnt/openstack-git',
|
||||||
'http_proxy': amulet_http_proxy,
|
'http_proxy': amulet_http_proxy,
|
||||||
|
Loading…
Reference in New Issue
Block a user