We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac9f300 commit 1f419ebCopy full SHA for 1f419eb
tests/system/large/test_streaming.py
@@ -14,10 +14,13 @@
14
15
import time
16
17
+import pytest
18
+
19
import bigframes
20
import bigframes.streaming
21
22
23
+@pytest.mark.flaky(retries=3, delay=10)
24
def test_streaming_df_to_bigtable(session_load: bigframes.Session):
25
# launch a continuous query
26
job_id_prefix = "test_streaming_"
@@ -51,6 +54,7 @@ def test_streaming_df_to_bigtable(session_load: bigframes.Session):
51
54
query_job.cancel()
52
55
53
56
57
58
def test_streaming_df_to_pubsub(session_load: bigframes.Session):
59
60
job_id_prefix = "test_streaming_pubsub_"
0 commit comments