From 91f2cb2b789c8cfcaa7fe3d7617fe6b8230df22a Mon Sep 17 00:00:00 2001 From: Vratko Polak Date: Wed, 24 Apr 2019 10:51:37 +0200 Subject: Move generate_tests earlier in entry scripts The idea is to run test generation and archivation before testbed reservation, as during generation and archivation the testbed can be used by another job. The two steps are moved just before (physical or docker) reservation, as they currently take considerable time, so simpler steps are kept before to save time if they fail. Coincidentally, it is also just after activate_virtualenv, Python is needed for test generation. Change-Id: I8b41b91dba8118e89301e3fcf89d5cd14ac054a2 Signed-off-by: Vratko Polak --- resources/libraries/bash/entry/bootstrap_verify_perf.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'resources/libraries/bash/entry/bootstrap_verify_perf.sh') diff --git a/resources/libraries/bash/entry/bootstrap_verify_perf.sh b/resources/libraries/bash/entry/bootstrap_verify_perf.sh index 7c00491c90..c0479a742c 100644 --- a/resources/libraries/bash/entry/bootstrap_verify_perf.sh +++ b/resources/libraries/bash/entry/bootstrap_verify_perf.sh @@ -39,12 +39,12 @@ select_topology || die gather_build || die check_download_dir || die activate_virtualenv || die +generate_tests || die +archive_tests || die reserve_testbed || die ansible_hosts "run-jitter-tool" || die select_tags || die compose_pybot_arguments || die -generate_tests || die -archive_tests || die run_pybot || die untrap_and_unreserve_testbed || die copy_archives || die -- cgit 1.2.3-korg