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

Commit 93c5d76

Browse files
committed
disable tests not supported by enterprise
1 parent f156d45 commit 93c5d76

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

tests/system/test_system.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1727,7 +1727,7 @@ def test_query_with_order_dot_key(client, cleanup, database):
17271727
assert found_data == [snap.to_dict() for snap in cursor_with_key_data]
17281728

17291729

1730-
@pytest.mark.parametrize("database", TEST_DATABASES_W_ENTERPRISE, indirect=True)
1730+
@pytest.mark.parametrize("database", TEST_DATABASES, indirect=True)
17311731
def test_query_unary(client, cleanup, database):
17321732
collection_name = "unary" + UNIQUE_RESOURCE_ID
17331733
collection = client.collection(collection_name)
@@ -3287,7 +3287,7 @@ def test_query_with_or_composite_filter(collection, database):
32873287
verify_pipeline(query)
32883288

32893289

3290-
@pytest.mark.parametrize("database", TEST_DATABASES_W_ENTERPRISE, indirect=True)
3290+
@pytest.mark.parametrize("database", TEST_DATABASES, indirect=True)
32913291
@pytest.mark.parametrize(
32923292
"aggregation_type,expected_value", [("count", 5), ("sum", 100), ("avg", 4.0)]
32933293
)

tests/system/test_system_async.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1651,7 +1651,7 @@ async def test_query_with_order_dot_key(client, cleanup, database):
16511651
assert found_data == [snap.to_dict() for snap in cursor_with_key_data]
16521652

16531653

1654-
@pytest.mark.parametrize("database", TEST_DATABASES_W_ENTERPRISE, indirect=True)
1654+
@pytest.mark.parametrize("database", TEST_DATABASES, indirect=True)
16551655
async def test_query_unary(client, cleanup, database):
16561656
collection_name = "unary" + UNIQUE_RESOURCE_ID
16571657
collection = client.collection(collection_name)

0 commit comments

Comments
 (0)