From 9fb2edb16f5afb47f5cbb87cfb8656b200bbbba9 Mon Sep 17 00:00:00 2001 From: thelamer Date: Fri, 18 Jan 2019 19:54:58 -0800 Subject: [PATCH] moving timeout to outside of just screenshotting to dump logs --- ci/ci.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/ci.py b/ci/ci.py index 9a7eb5a..14d1c1b 100755 --- a/ci/ci.py +++ b/ci/ci.py @@ -216,10 +216,10 @@ def container_test(tag): report_status = 'FAIL' (report_tests,report_containers,report_status) = endtest(container,report_tests,report_containers,report_status,tag,build_version,packages) return (report_tests,report_containers,report_status) + # Sleep for the user specified amount of time + time.sleep(int(testdelay)) # Screenshot web interface and check connectivity if screenshot == 'true': - # Sleep for the user specified amount of time - time.sleep(int(testdelay)) # Take a screenshot if ssl == 'true': proto = 'https://'