From 5f66c3caed183dff29361f0de7bce2e84e89b58d Mon Sep 17 00:00:00 2001 From: Gilles Thouenon Date: Mon, 16 Oct 2023 11:04:36 +0200 Subject: [PATCH 1/1] Delay execution of the first PCE functional test It appears that the controller is not fully started when running this first functional test. Delay a litle bit its execution to avoid false negative results on the CI. JIRA: TRNSPRTPCE-767 Signed-off-by: Gilles Thouenon Change-Id: Ic3b25448be5eb0058a078594d2317351d3872d23 --- tests/transportpce_tests/pce/test01_pce.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/transportpce_tests/pce/test01_pce.py b/tests/transportpce_tests/pce/test01_pce.py index 32886a613..a1b1b9483 100644 --- a/tests/transportpce_tests/pce/test01_pce.py +++ b/tests/transportpce_tests/pce/test01_pce.py @@ -55,6 +55,7 @@ class TransportPCEtesting(unittest.TestCase): def setUpClass(cls): # pylint: disable=bare-except sample_files_parsed = False + time.sleep(10) try: TOPO_BI_DIR_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)), "..", "..", "sample_configs", "honeynode-topo.json") -- 2.36.6