Merge lp:~mwhudson/launchpad/disable-test_import_bzrsvn into lp:launchpad

Proposed by Michael Hudson-Doyle
Status: Merged
Approved by: Tim Penhey
Approved revision: no longer in the source branch.
Merged at revision: not available
Proposed branch: lp:~mwhudson/launchpad/disable-test_import_bzrsvn
Merge into: lp:launchpad
Diff against target: 14 lines (+3/-1)
1 file modified
lib/lp/codehosting/codeimport/tests/test_workermonitor.py (+3/-1)
To merge this branch: bzr merge lp:~mwhudson/launchpad/disable-test_import_bzrsvn
Reviewer Review Type Date Requested Status
Tim Penhey (community) Approve
Review via email: mp+21984@code.launchpad.net

Commit message

Disable test_import_bzrsvn because of spurious failures

Description of the change

Disable test_import_bzrsvn because of spurious failures as seen in https://bugs.edge.launchpad.net/launchpad-code/+bug/541526

To post a comment you must log in.
Revision history for this message
Tim Penhey (thumper) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'lib/lp/codehosting/codeimport/tests/test_workermonitor.py'
2--- lib/lp/codehosting/codeimport/tests/test_workermonitor.py 2010-03-19 10:43:51 +0000
3+++ lib/lp/codehosting/codeimport/tests/test_workermonitor.py 2010-03-23 21:51:31 +0000
4@@ -732,7 +732,9 @@
5 result = self.performImport(job_id)
6 return result.addCallback(self.assertImported, code_import_id)
7
8- def test_import_bzrsvn(self):
9+ # XXX 2010-03-24 MichaelHudson, bug=541526: This test fails intermittently
10+ # in EC2.
11+ def DISABLED_test_import_bzrsvn(self):
12 # Create a Subversion-via-bzr-svn CodeImport and import it.
13 job = self.getStartedJobForImport(self.makeBzrSvnCodeImport())
14 code_import_id = job.code_import.id