From: Aleksey Maksimov Date: Wed, 20 Nov 2013 03:21:49 +0000 (+0800) Subject: Added another delay to let Jenkins catchup X-Git-Tag: v0.2.23~62^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=345bab743aca8a02053f1966372114ba1dc23148;p=tools%2Fpython-jenkinsapi.git Added another delay to let Jenkins catchup --- 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')