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
=== modified file 'lib/lp/codehosting/codeimport/tests/test_workermonitor.py'
--- lib/lp/codehosting/codeimport/tests/test_workermonitor.py 2010-03-19 10:43:51 +0000
+++ lib/lp/codehosting/codeimport/tests/test_workermonitor.py 2010-03-23 21:51:31 +0000
@@ -732,7 +732,9 @@
732 result = self.performImport(job_id)732 result = self.performImport(job_id)
733 return result.addCallback(self.assertImported, code_import_id)733 return result.addCallback(self.assertImported, code_import_id)
734734
735 def test_import_bzrsvn(self):735 # XXX 2010-03-24 MichaelHudson, bug=541526: This test fails intermittently
736 # in EC2.
737 def DISABLED_test_import_bzrsvn(self):
736 # Create a Subversion-via-bzr-svn CodeImport and import it.738 # Create a Subversion-via-bzr-svn CodeImport and import it.
737 job = self.getStartedJobForImport(self.makeBzrSvnCodeImport())739 job = self.getStartedJobForImport(self.makeBzrSvnCodeImport())
738 code_import_id = job.code_import.id740 code_import_id = job.code_import.id