Skip to content

Commit 0718caa

Browse files
authored
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
1 parent c6184c8 commit 0718caa

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

flex/interactive/sdk/python/gs_interactive/tests/test_robustness.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
import os
2020
import sys
21+
from time import sleep
2122

2223
import pytest
2324

@@ -289,3 +290,6 @@ def test_custom_pk_name(
289290
records = result.fetch(1)
290291
assert len(records) == 1 and records[0]["$f0"] == 2
291292
start_service_on_graph(interactive_session, "1")
293+
sleep(
294+
3
295+
) # sleep for a while to make sure the compiler has updated to the new schema

0 commit comments

Comments
 (0)