From 7c6ee1bda31040e41220f994c99c8562a1ed1c36 Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Fri, 20 Sep 2024 11:14:21 -0400 Subject: [PATCH] tests: Add some logging to figure out why CI is failing Not failing locally, but upstream it is across the board. Signed-off-by: Donald Sharp --- .../all_protocol_startup/test_all_protocol_startup.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/topotests/all_protocol_startup/test_all_protocol_startup.py b/tests/topotests/all_protocol_startup/test_all_protocol_startup.py index 551cecf00bd9..043e051c130e 100644 --- a/tests/topotests/all_protocol_startup/test_all_protocol_startup.py +++ b/tests/topotests/all_protocol_startup/test_all_protocol_startup.py @@ -20,6 +20,7 @@ import pytest import glob from time import sleep +from lib.topolog import logger pytestmark = [ pytest.mark.babeld, @@ -1800,6 +1801,11 @@ def _test_interface_description(): "r1 failed `show interface description vrf all` test\n{}\n".format(diff) ) + logger.info("Expected") + logger.info(expected) + logger.info("Actual") + logger.info(output) + logger.info("FINI") return diff test_func = functools.partial(_test_interface_description)