From 0c49b5c3089d3d2a6eaaa71a5fb8ba94865da2e6 Mon Sep 17 00:00:00 2001 From: "Chandan Kumar (raukadah)" Date: Tue, 15 Oct 2019 17:01:02 +0530 Subject: [PATCH] Append the tempest run command output in file In CI, when we run full tempest api and scenario tests, it takes time and in most of the time at Execute tempest tasks hits Timeout and no ara report got generated. So we have no idea what tests ate the time. Logging the tempest result in a file will give more info on what happened with the tests. Change-Id: Ibba761551e6bc14c127d9461de2a72e9f0fcb715 Signed-off-by: Chandan Kumar (raukadah) --- tasks/tempest_run.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/tempest_run.yml b/tasks/tempest_run.yml index 5b0cf41d..a3aa86fc 100644 --- a/tasks/tempest_run.yml +++ b/tasks/tempest_run.yml @@ -30,7 +30,7 @@ {% if tempest_test_blacklist | length > 0 %} --blacklist-file {{ tempest_test_blacklist_file_path }} \ {% endif %} - --whitelist-file {{ tempest_test_whitelist_file_path }} + --whitelist-file {{ tempest_test_whitelist_file_path }} > {{ tempest_log_dir }}/tempest_run.log args: chdir: "{{ tempest_workspace }}" executable: /bin/bash