Merge lp:~allenap/maas/1.3-dev-env-distribute into lp:maas/1.3

Proposed by Gavin Panella
Status: Merged
Merged at revision: 1463
Proposed branch: lp:~allenap/maas/1.3-dev-env-distribute
Merge into: lp:maas/1.3
Diff against target: 41 lines (+7/-2)
3 files modified
required-packages/dev (+1/-0)
src/maasserver/tests/test_views_settings.py (+5/-1)
versions.cfg (+1/-1)
To merge this branch: bzr merge lp:~allenap/maas/1.3-dev-env-distribute
Reviewer Review Type Date Requested Status
Gavin Panella (community) Approve
Review via email: mp+163364@code.launchpad.net

Commit message

Get the development environment working in Raring Ringtail.

Browser tests (using Firefox) do not currently pass.

Backport of r1462 from lp:maas.

To post a comment you must log in.
Revision history for this message
Gavin Panella (allenap) :
review: Approve
Revision history for this message
MAAS Lander (maas-lander) wrote :

The Jenkins job https://jenkins.qa.ubuntu.com/job/maas-merger-1.3/3/console reported an error when processing this lp:~allenap/maas/1.3-dev-env-distribute branch.
Not merging it.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'required-packages/dev'
--- required-packages/dev 2012-10-24 13:59:18 +0000
+++ required-packages/dev 2013-05-10 20:31:26 +0000
@@ -5,6 +5,7 @@
5ipython5ipython
6libjs-yui3-full6libjs-yui3-full
7make7make
8python-cssselect
8python-lxml9python-lxml
9python-pip10python-pip
10python-pocket-lint11python-pocket-lint
1112
=== modified file 'src/maasserver/tests/test_views_settings.py'
--- src/maasserver/tests/test_views_settings.py 2013-03-07 15:33:59 +0000
+++ src/maasserver/tests/test_views_settings.py 2013-05-10 20:31:26 +0000
@@ -59,7 +59,11 @@
59 # "Add a user" link.59 # "Add a user" link.
60 self.assertIn(reverse('accounts-add'), all_links)60 self.assertIn(reverse('accounts-add'), all_links)
61 for user in users:61 for user in users:
62 rows = tab.cssselect('tr#"%s"' % user.username)62 # Use the longhand way of matching an ID here - instead of tr#id -
63 # because the ID may contain non [a-zA-Z-]+ characters. These are
64 # not allowed in symbols, which is how cssselect treats text
65 # following "#" in a selector.
66 rows = tab.cssselect('tr[id="%s"]' % user.username)
63 # Only one row for the user.67 # Only one row for the user.
64 self.assertEqual(1, len(rows))68 self.assertEqual(1, len(rows))
65 row = rows[0]69 row = rows[0]
6670
=== modified file 'versions.cfg'
--- versions.cfg 2013-02-26 13:15:15 +0000
+++ versions.cfg 2013-05-10 20:31:26 +0000
@@ -23,7 +23,7 @@
23buildout-versions = 1.723buildout-versions = 1.7
24collective.recipe.sphinxbuilder = 0.7.024collective.recipe.sphinxbuilder = 0.7.0
25coverage = 3.5.125coverage = 3.5.1
26distribute = 0.6.2426distribute = 0.6.34
27django-nose = 0.1.327django-nose = 0.1.3
28fixtures = 0.3.828fixtures = 0.3.8
29flake8 = 1.129flake8 = 1.1

Subscribers

People subscribed via source and target branches