From 345bab743aca8a02053f1966372114ba1dc23148 Mon Sep 17 00:00:00 2001 From: Aleksey Maksimov Date: Wed, 20 Nov 2013 11:21:49 +0800 Subject: [PATCH] Added another delay to let Jenkins catchup --- jenkinsapi_tests/systests/test_invocation.py | 1 + 1 file changed, 1 insertion(+) diff --git a/jenkinsapi_tests/systests/test_invocation.py b/jenkinsapi_tests/systests/test_invocation.py index d199edd..a79ed36 100644 --- a/jenkinsapi_tests/systests/test_invocation.py +++ b/jenkinsapi_tests/systests/test_invocation.py @@ -27,6 +27,7 @@ class TestInvocation(BaseSystemTest): job_name = 'create_%s' % random_string() job = self.jenkins.create_job(job_name, LONG_RUNNING_JOB) ii = job.invoke(invoke_pre_check_delay=7) + time.sleep(3) bn = ii.get_build_number() self.assertIsInstance(bn, int) ii.block(until='not_queued') -- 2.7.4