Merge lp:~corey.bryant/charms/trusty/keystone/amulet-git-fixups into lp:~openstack-charmers-archive/charms/trusty/keystone/next

Proposed by Corey Bryant
Status: Merged
Merged at revision: 162
Proposed branch: lp:~corey.bryant/charms/trusty/keystone/amulet-git-fixups
Merge into: lp:~openstack-charmers-archive/charms/trusty/keystone/next
Diff against target: 38 lines (+13/-10)
1 file modified
tests/basic_deployment.py (+13/-10)
To merge this branch: bzr merge lp:~corey.bryant/charms/trusty/keystone/amulet-git-fixups
Reviewer Review Type Date Requested Status
OpenStack Charmers Pending
Review via email: mp+264566@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Corey Bryant (corey.bryant) wrote :

Amulet deploy from source updates:
  * Use modified icehouse branches due to requirements issues

Revision history for this message
uosci-testing-bot (uosci-testing-bot) wrote :

charm_lint_check #6115 keystone-next for corey.bryant mp264566
    LINT OK: passed

Build: http://10.245.162.77:8080/job/charm_lint_check/6115/

Revision history for this message
uosci-testing-bot (uosci-testing-bot) wrote :

charm_unit_test #5747 keystone-next for corey.bryant mp264566
    UNIT OK: passed

Build: http://10.245.162.77:8080/job/charm_unit_test/5747/

Revision history for this message
uosci-testing-bot (uosci-testing-bot) wrote :

charm_amulet_test #5104 keystone-next for corey.bryant mp264566
    AMULET OK: passed

Build: http://10.245.162.77:8080/job/charm_amulet_test/5104/

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'tests/basic_deployment.py'
2--- tests/basic_deployment.py 2015-07-09 18:16:48 +0000
3+++ tests/basic_deployment.py 2015-07-13 16:07:54 +0000
4@@ -62,21 +62,24 @@
5 keystone_config = {'admin-password': 'openstack',
6 'admin-token': 'ubuntutesting'}
7 if self.git:
8- release = self._get_openstack_release_string()
9- reqs_branch = 'stable/' + release
10+ amulet_http_proxy = os.environ.get('AMULET_HTTP_PROXY')
11+
12+ reqs_repo = 'git://github.com/openstack/requirements'
13+ keystone_repo = 'git://github.com/openstack/keystone'
14 if self._get_openstack_release() == self.trusty_icehouse:
15- keystone_branch = release + '-eol'
16- else:
17- keystone_branch = 'stable/' + release
18- amulet_http_proxy = os.environ.get('AMULET_HTTP_PROXY')
19+ reqs_repo = 'git://github.com/coreycb/requirements'
20+ keystone_repo = 'git://github.com/coreycb/keystone'
21+
22+ branch = 'stable/' + self._get_openstack_release_string()
23+
24 openstack_origin_git = {
25 'repositories': [
26 {'name': 'requirements',
27- 'repository': 'git://github.com/openstack/requirements',
28- 'branch': reqs_branch},
29+ 'repository': reqs_repo,
30+ 'branch': branch},
31 {'name': 'keystone',
32- 'repository': 'git://github.com/openstack/keystone',
33- 'branch': keystone_branch},
34+ 'repository': keystone_repo,
35+ 'branch': branch},
36 ],
37 'directory': '/mnt/openstack-git',
38 'http_proxy': amulet_http_proxy,

Subscribers

People subscribed via source and target branches