launchpad-reviewers team mailing list archive
-
launchpad-reviewers team
-
Mailing list archive
-
Message #25693
[Merge] ~cjwatson/launchpad:loosen-more-test-timeouts into launchpad:master
Colin Watson has proposed merging ~cjwatson/launchpad:loosen-more-test-timeouts into launchpad:master.
Commit message:
Loosen more test timeouts
Requested reviews:
Launchpad code reviewers (launchpad-reviewers)
For more details, see:
https://code.launchpad.net/~cjwatson/launchpad/+git/launchpad/+merge/394107
These have caused spurious failures on buildbot recently.
--
Your team Launchpad code reviewers is requested to review the proposed merge of ~cjwatson/launchpad:loosen-more-test-timeouts into launchpad:master.
diff --git a/lib/lp/buildmaster/tests/test_interactor.py b/lib/lp/buildmaster/tests/test_interactor.py
index b081cf5..0847014 100644
--- a/lib/lp/buildmaster/tests/test_interactor.py
+++ b/lib/lp/buildmaster/tests/test_interactor.py
@@ -503,7 +503,7 @@ class TestSlave(TestCase):
real slave server.
"""
- run_tests_with = AsynchronousDeferredRunTest.make_factory(timeout=10)
+ run_tests_with = AsynchronousDeferredRunTest.make_factory(timeout=30)
def setUp(self):
super(TestSlave, self).setUp()
diff --git a/lib/lp/snappy/tests/test_snapbuildbehaviour.py b/lib/lp/snappy/tests/test_snapbuildbehaviour.py
index 0ffcf88..1424036 100644
--- a/lib/lp/snappy/tests/test_snapbuildbehaviour.py
+++ b/lib/lp/snappy/tests/test_snapbuildbehaviour.py
@@ -286,7 +286,7 @@ class TestSnapBuildBehaviour(TestSnapBuildBehaviourBase):
class TestAsyncSnapBuildBehaviour(StatsMixin, TestSnapBuildBehaviourBase):
run_tests_with = AsynchronousDeferredRunTestForBrokenTwisted.make_factory(
- timeout=10)
+ timeout=30)
@defer.inlineCallbacks
def setUp(self):