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

Commit 92a1dc6

Browse files
committed
fixed skip
1 parent 29f6760 commit 92a1dc6

2 files changed

Lines changed: 2 additions & 11 deletions

File tree

tests/system/test_system.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1689,13 +1689,9 @@ def test_query_stream_w_read_time(query_docs, cleanup, database):
16891689
assert new_values[new_ref.id] == new_data
16901690

16911691

1692+
@pytest.mark.skipif(IS_KOKORO_TEST, reason="skipping pipeline verification on kokoro")
16921693
@pytest.mark.parametrize("database", [FIRESTORE_ENTERPRISE_DB], indirect=True)
16931694
def test_pipeline_w_read_time(query_docs, cleanup, database):
1694-
# return early on kokoro. Test project doesn't currently support pipelines
1695-
# TODO: enable pipeline verification when kokoro test project is whitelisted
1696-
if IS_KOKORO_TEST:
1697-
pytest.skip("skipping pipeline verification on kokoro")
1698-
16991695
collection, stored, allowed_vals = query_docs
17001696
num_vals = len(allowed_vals)
17011697

tests/system/test_system_async.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1611,14 +1611,9 @@ async def test_query_stream_w_read_time(query_docs, cleanup, database):
16111611
assert new_ref.id in new_values
16121612
assert new_values[new_ref.id] == new_data
16131613

1614-
1614+
@pytest.mark.skipif(IS_KOKORO_TEST, reason="skipping pipeline verification on kokoro")
16151615
@pytest.mark.parametrize("database", [FIRESTORE_ENTERPRISE_DB], indirect=True)
16161616
async def test_pipeline_w_read_time(query_docs, cleanup, database):
1617-
# return early on kokoro. Test project doesn't currently support pipelines
1618-
# TODO: enable pipeline verification when kokoro test project is whitelisted
1619-
if IS_KOKORO_TEST:
1620-
pytest.skip("skipping pipeline verification on kokoro")
1621-
16221617
collection, stored, allowed_vals = query_docs
16231618
num_vals = len(allowed_vals)
16241619

0 commit comments

Comments
 (0)