From c5ea29649b284692e9d3a13eb1df1545a14e1adb Mon Sep 17 00:00:00 2001 From: Sergii Golovatiuk Date: Tue, 14 Feb 2017 13:23:05 +0100 Subject: [PATCH] Add timings to RECAP output. - Starting from version 2.0 ansible has 'callback_whitelist = profile_tasks'. It allows to analyze CI to find some time regressions. - Add skippy to CI's ansible.cfg Signed-off-by: Sergii Golovatiuk --- ansible.cfg | 1 + tests/ansible.cfg | 2 ++ 2 files changed, 3 insertions(+) diff --git a/ansible.cfg b/ansible.cfg index 769f2dcc6..d1741836a 100644 --- a/ansible.cfg +++ b/ansible.cfg @@ -9,3 +9,4 @@ fact_caching = jsonfile fact_caching_connection = /tmp stdout_callback = skippy library = ./library +callback_whitelist = profile_tasks diff --git a/tests/ansible.cfg b/tests/ansible.cfg index af14679fe..bf198f62e 100644 --- a/tests/ansible.cfg +++ b/tests/ansible.cfg @@ -6,3 +6,5 @@ host_key_checking=False gathering = smart fact_caching = jsonfile fact_caching_connection = /tmp +stdout_callback = skippy +callback_whitelist = profile_tasks