Merge lp:~soren/nova/dont-install-run_tests.py into lp:~hudson-openstack/nova/trunk

Proposed by Soren Hansen
Status: Merged
Approved by: Josh Kearney
Approved revision: 1413
Merged at revision: 1412
Proposed branch: lp:~soren/nova/dont-install-run_tests.py
Merge into: lp:~hudson-openstack/nova/trunk
Diff against target: 10 lines (+2/-1)
1 file modified
setup.py (+2/-1)
To merge this branch: bzr merge lp:~soren/nova/dont-install-run_tests.py
Reviewer Review Type Date Requested Status
Josh Kearney (community) Approve
Dan Prince (community) Approve
Jay Pipes (community) Approve
Review via email: mp+71007@code.launchpad.net

Commit message

Pass py_modules=[] to setup to avoid installing run_tests.py as a top-level module.

To post a comment you must log in.
Revision history for this message
Jay Pipes (jaypipes) wrote :

lgtm.

review: Approve
Revision history for this message
Dan Prince (dan-prince) wrote :

Looks good.

review: Approve
Revision history for this message
Josh Kearney (jk0) wrote :

LGTM

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'setup.py'
--- setup.py 2011-08-02 14:09:58 +0000
+++ setup.py 2011-08-10 09:18:13 +0000
@@ -133,4 +133,5 @@
133 'bin/stack',133 'bin/stack',
134 'bin/nova-volume',134 'bin/nova-volume',
135 'bin/nova-vncproxy',135 'bin/nova-vncproxy',
136 'tools/nova-debug'])136 'tools/nova-debug'],
137 py_modules=[])