Merge lp:~abentley/launchpad/detailed-build-emails into lp:launchpad
| Status: | Merged |
|---|---|
| Merged at revision: | 11270 |
| Proposed branch: | lp:~abentley/launchpad/detailed-build-emails |
| Merge into: | lp:launchpad |
| Diff against target: |
315 lines (+116/-29) 6 files modified
lib/canonical/launchpad/emailtemplates/build-request.txt (+7/-1) lib/lp/code/mail/sourcepackagerecipebuild.py (+16/-1) lib/lp/code/mail/tests/test_sourcepackagerecipebuild.py (+69/-10) lib/lp/code/model/sourcepackagerecipebuild.py (+3/-2) lib/lp/code/model/tests/test_sourcepackagerecipebuild.py (+16/-9) lib/lp/testing/factory.py (+5/-6) |
| To merge this branch: | bzr merge lp:~abentley/launchpad/detailed-build-emails |
| Related bugs: |
| Reviewer | Review Type | Date Requested | Status |
|---|---|---|---|
| Paul Hummer (community) | code | 2010-07-30 | Approve on 2010-07-30 |
|
Review via email:
|
|||
Commit Message
Make recipe build emails more like binary build ones
Description of the Change
= Summary =
Fix bug #603606: Recipe Build failure emails aren't as binary package build failures
== Proposed fix ==
Update recipe build emails to use similar formatting to bianary build emails.
== Pre-implementation notes ==
Mid-implementation with Tim Penhey
== Implementation details ==
The formatting now matches. The fields supplied are:
State, Recipe, Archive, Distroseries, Duration, Build Log and Builder.
Similarly, the subject line contains recipe build id, recipe, distroseries
and status.
Component and pocket are not provided as these do not vary.
== Tests ==
bin/test test_sourcepack
== Demo and Q/A ==
Request a build. When is processed, the resulting mail should be as described.
= Launchpad lint =
Checking for conflicts and issues in changed files.
Linting changed files:
lib/lp/
lib/lp/
lib/lp/
lib/lp/
lib/canonical
lib/lp/
./lib/lp/
5: E303 too many blank lines (3)
71: Line exceeds 78 characters.
46: E231 missing whitespace after ','
./lib/lp/
15: 'IStore' imported but unused
5: E303 too many blank lines (3)
37: W291 trailing whitespace
38: W291 trailing whitespace
39: W291 trailing whitespace
42: E302 expected 2 blank lines, found 1
37: Line has trailing whitespace.
38: Line has trailing whitespace.
39: Line has trailing whitespace.

Looks fine to me.