[corey.bryant,trivial] Add icehouse git amulet tests back with new branches.
This commit is contained in:
parent
19cf6c5d15
commit
e6ede2b745
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 quantum-gateway git deployment on trusty-icehouse."""
|
||||
|
||||
from basic_deployment import NeutronGatewayBasicDeployment
|
||||
|
||||
if __name__ == '__main__':
|
||||
deployment = NeutronGatewayBasicDeployment(series='trusty', git=True)
|
||||
deployment.run_tests()
|
@ -68,16 +68,21 @@ class NeutronGatewayBasicDeployment(OpenStackAmuletDeployment):
|
||||
"""Configure all of the services."""
|
||||
neutron_gateway_config = {}
|
||||
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:
|
||||
neutron_branch = release + '-eol'
|
||||
else:
|
||||
neutron_branch = 'stable/' + release
|
||||
amulet_http_proxy = os.environ.get('AMULET_HTTP_PROXY')
|
||||
openstack_origin_git = {
|
||||
'repositories': [
|
||||
{'name': 'requirements',
|
||||
'repository': 'git://github.com/openstack/requirements',
|
||||
'branch': branch},
|
||||
'branch': reqs_branch},
|
||||
{'name': 'neutron',
|
||||
'repository': 'git://github.com/openstack/neutron',
|
||||
'branch': branch},
|
||||
'branch': neutron_branch},
|
||||
],
|
||||
'directory': '/mnt/openstack-git',
|
||||
'http_proxy': amulet_http_proxy,
|
||||
|
Loading…
Reference in New Issue
Block a user