From 55cde8a45ebeac625a2bd63759aaec6c04d78d9f Mon Sep 17 00:00:00 2001 From: Rafael Guterres Jeffman Date: Sat, 4 Nov 2023 16:28:25 -0300 Subject: [PATCH] ci: Increase failure message size The message size of 2500 characters is not enough to provide enough information for some test case failures. Doubling the size will provide more information to evaluate test failure. --- tests/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/utils.py b/tests/utils.py index 9e3d5e83be..c9dc08b733 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -197,7 +197,7 @@ def run_playbook(playbook, allow_failures=False): # Need to get the last bytes of msg otherwise Azure # will cut it out. - assert result.returncode == 0, assert_msg[-2500:] + assert result.returncode == 0, assert_msg[-5000:] return result