From 0718caad8dbb781a99f14af9616cb0af8bf813ad Mon Sep 17 00:00:00 2001 From: Zhang Lei Date: Thu, 14 Nov 2024 13:58:15 +0800 Subject: [PATCH] ci: Fix interactive ci (#4324) Wait a while for compiler to get the latest graph schema. See https://github.com/alibaba/GraphScope/actions/runs/11812000683/job/32907096373 --- .../sdk/python/gs_interactive/tests/test_robustness.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/flex/interactive/sdk/python/gs_interactive/tests/test_robustness.py b/flex/interactive/sdk/python/gs_interactive/tests/test_robustness.py index af8c55a4b654..c2365e0c6f1a 100644 --- a/flex/interactive/sdk/python/gs_interactive/tests/test_robustness.py +++ b/flex/interactive/sdk/python/gs_interactive/tests/test_robustness.py @@ -18,6 +18,7 @@ import os import sys +from time import sleep import pytest @@ -289,3 +290,6 @@ def test_custom_pk_name( records = result.fetch(1) assert len(records) == 1 and records[0]["$f0"] == 2 start_service_on_graph(interactive_session, "1") + sleep( + 3 + ) # sleep for a while to make sure the compiler has updated to the new schema