Skip to content

Commit

Permalink
tests: Add some logging to figure out why CI is failing
Browse files Browse the repository at this point in the history
Not failing locally, but upstream it is across the board.

Signed-off-by: Donald Sharp <[email protected]>
  • Loading branch information
donaldsharp committed Sep 20, 2024
1 parent 00946bd commit 7c6ee1b
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
import pytest
import glob
from time import sleep
from lib.topolog import logger

pytestmark = [
pytest.mark.babeld,
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit 7c6ee1b

Please sign in to comment.