Skip to content
This repository was archived by the owner on Mar 2, 2026. It is now read-only.

Commit 71baf58

Browse files
committed
chore(tests): disable pipeline read time test in emulator
1 parent 61ae07a commit 71baf58

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

tests/system/test_system.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1800,6 +1800,9 @@ def test_query_stream_w_read_time(query_docs, cleanup, database):
18001800
assert new_values[new_ref.id] == new_data
18011801

18021802

1803+
@pytest.mark.skipif(
1804+
FIRESTORE_EMULATOR, reason="Pipeline query not supported in emulator."
1805+
)
18031806
@pytest.mark.parametrize("database", [FIRESTORE_ENTERPRISE_DB], indirect=True)
18041807
def test_pipeline_w_read_time(query_docs, cleanup, database):
18051808
collection, stored, allowed_vals = query_docs

tests/system/test_system_async.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1685,6 +1685,9 @@ async def test_pipeline_explain_options_using_additional_options(
16851685
assert "Execution:" in text_stats
16861686

16871687

1688+
@pytest.mark.skipif(
1689+
FIRESTORE_EMULATOR, reason="Pipeline query not supported in emulator."
1690+
)
16881691
@pytest.mark.parametrize("database", [FIRESTORE_ENTERPRISE_DB], indirect=True)
16891692
async def test_pipeline_w_read_time(query_docs, cleanup, database):
16901693
collection, stored, allowed_vals = query_docs

0 commit comments

Comments
 (0)