Skip to content

Commit

Permalink
ci: Fix interactive ci (alibaba#4324)
Browse files Browse the repository at this point in the history
Wait a while for compiler to get the latest graph schema.

See
https://github.com/alibaba/GraphScope/actions/runs/11812000683/job/32907096373
  • Loading branch information
zhanglei1949 authored Nov 14, 2024
1 parent c6184c8 commit 0718caa
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

import os
import sys
from time import sleep

import pytest

Expand Down Expand Up @@ -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

0 comments on commit 0718caa

Please sign in to comment.