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
1=== modified file 'required-packages/dev'
2--- required-packages/dev 2012-10-24 13:59:18 +0000
3+++ required-packages/dev 2013-05-10 20:31:26 +0000
4@@ -5,6 +5,7 @@
5 ipython
6 libjs-yui3-full
7 make
8+python-cssselect
9 python-lxml
10 python-pip
11 python-pocket-lint
12
13=== modified file 'src/maasserver/tests/test_views_settings.py'
14--- src/maasserver/tests/test_views_settings.py 2013-03-07 15:33:59 +0000
15+++ src/maasserver/tests/test_views_settings.py 2013-05-10 20:31:26 +0000
16@@ -59,7 +59,11 @@
17 # "Add a user" link.
18 self.assertIn(reverse('accounts-add'), all_links)
19 for user in users:
20- rows = tab.cssselect('tr#"%s"' % user.username)
21+ # Use the longhand way of matching an ID here - instead of tr#id -
22+ # because the ID may contain non [a-zA-Z-]+ characters. These are
23+ # not allowed in symbols, which is how cssselect treats text
24+ # following "#" in a selector.
25+ rows = tab.cssselect('tr[id="%s"]' % user.username)
26 # Only one row for the user.
27 self.assertEqual(1, len(rows))
28 row = rows[0]
29
30=== modified file 'versions.cfg'
31--- versions.cfg 2013-02-26 13:15:15 +0000
32+++ versions.cfg 2013-05-10 20:31:26 +0000
33@@ -23,7 +23,7 @@
34 buildout-versions = 1.7
35 collective.recipe.sphinxbuilder = 0.7.0
36 coverage = 3.5.1
37-distribute = 0.6.24
38+distribute = 0.6.34
39 django-nose = 0.1.3
40 fixtures = 0.3.8
41 flake8 = 1.1

Subscribers

People subscribed via source and target branches