Extend timeout for cvp-tempest job from 3h to 6h
Usually tempest tests takes about 5.5 hours
PROD-35295
Change-Id: If8f7a22b98385b10f2f8b1ecc245d47eca974ae6
diff --git a/tcp_tests/tests/system/test_cvp_pipelines.py b/tcp_tests/tests/system/test_cvp_pipelines.py
index e55fc08..b1a7369 100644
--- a/tcp_tests/tests/system/test_cvp_pipelines.py
+++ b/tcp_tests/tests/system/test_cvp_pipelines.py
@@ -375,7 +375,7 @@
salt = salt_actions
dt = drivetrain_actions
jenkins_start_timeout = 60
- jenkins_build_timeout = 3 * 60 * 60
+ jenkins_build_timeout = 6 * 60 * 60
show_step(1)
salt.sync_time()
@@ -391,12 +391,12 @@
}
cvp_tempest_result = dt.start_job_on_jenkins(
job_name,
- jenkins_tgt='I@docker:client:stack:jenkins and cfg01*',
+ jenkins_tgt='I@docker:client:stack:jenkins and I@salt:master',
start_timeout=jenkins_start_timeout,
build_timeout=jenkins_build_timeout,
verbose=True,
job_parameters=job_parameters,
- job_output_prefix='[ cvp-func/{build_number}:platform {time} ] ')
+ job_output_prefix='[ {job_name}/{build_number}:platform {time} ] ')
LOG.info('Job {0} result: {1}'.format(job_name, cvp_tempest_result))
show_step(4)