Increase timeout of test_plugins

This test takes relatively long and we observed several timeouts on
this job recently. Increasing the timeout should make this test more
robust.

Change-Id: I12b12c0582ec67b55d45b37d06587b49c0f6a682
This commit is contained in:
Tobias Henkel 2019-03-07 22:04:44 +01:00
parent 7ca96c2548
commit e1eba88b3f
No known key found for this signature in database
GPG Key ID: 03750DEC158E5FA2
1 changed files with 3 additions and 0 deletions

View File

@ -2398,6 +2398,9 @@ class TestAnsible(AnsibleZuulTestCase):
self.waitUntilSettled()
def test_plugins(self):
# This test runs a bit long and needs extra time.
self.wait_timeout = 120
# Keep the jobdir around so we can inspect contents if an
# assert fails.
self.executor_server.keep_jobdir = True