Merge lp:~cjohnston/ubuntu-ci-services-itself/deployer-missing-ci-utils into lp:ubuntu-ci-services-itself

Proposed by Chris Johnston
Status: Merged
Approved by: Chris Johnston
Approved revision: 276
Merged at revision: 275
Proposed branch: lp:~cjohnston/ubuntu-ci-services-itself/deployer-missing-ci-utils
Merge into: lp:ubuntu-ci-services-itself
Diff against target: 27 lines (+3/-2)
2 files modified
juju-deployer/deploy.py (+3/-1)
tests/run.py (+0/-1)
To merge this branch: bzr merge lp:~cjohnston/ubuntu-ci-services-itself/deployer-missing-ci-utils
Reviewer Review Type Date Requested Status
Andy Doan (community) Approve
PS Jenkins bot (community) continuous-integration Approve
Review via email: mp+208177@code.launchpad.net

Commit message

Deployer needs ci-utils too

To post a comment you must log in.
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :

PASSED: Continuous integration, rev:276
http://s-jenkins.ubuntu-ci:8080/job/uci-engine-ci/232/
Executed test runs:

Click here to trigger a rebuild:
http://s-jenkins.ubuntu-ci:8080/job/uci-engine-ci/232/rebuild

review: Approve (continuous-integration)
Revision history for this message
Andy Doan (doanac) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'juju-deployer/deploy.py'
2--- juju-deployer/deploy.py 2014-02-25 14:23:02 +0000
3+++ juju-deployer/deploy.py 2014-02-25 16:42:33 +0000
4@@ -13,10 +13,12 @@
5 import textwrap
6 from distutils import spawn
7 from itertools import chain
8-from ci_utils import dump_stack
9
10 # the juju-deployer/ directory.
11 deployer_dir = os.path.abspath(os.path.dirname(sys.argv[0]))
12+# ci-utils probably isn't in our pythonpath
13+sys.path.append(os.path.join(os.path.dirname(__file__), '../ci-utils'))
14+from ci_utils import dump_stack
15
16
17 def check_environment():
18
19=== modified file 'tests/run.py'
20--- tests/run.py 2014-02-24 19:35:44 +0000
21+++ tests/run.py 2014-02-25 16:42:33 +0000
22@@ -27,7 +27,6 @@
23
24 # deploy.py probably isn't in our pythonpath
25 sys.path.append(os.path.join(os.path.dirname(__file__), '../juju-deployer'))
26-sys.path.append(os.path.join(os.path.dirname(__file__), '../ci-utils'))
27 import deploy
28
29

Subscribers

People subscribed via source and target branches