Skip to content

Commit 6ad88fd

Browse files
fix: improve a test
1 parent 8a98fe4 commit 6ad88fd

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

tests/test_qdrant.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,11 @@ def test_client_is_good(qdrant_client: QdrantClient) -> None:
1818
assert qdrant_client is not None
1919

2020

21-
@pytest.mark.skip()
2221
def test_client_count(qdrant_client: QdrantClient, qdrant_collection_name) -> None:
2322
count_response = qdrant_client.count(collection_name=qdrant_collection_name)
2423
assert count_response.count == 100
2524

2625

27-
@pytest.mark.skip()
2826
def test_qdrant_migrate(
2927
qdrant_client: QdrantClient,
3028
qdrant_collection_name: str,
@@ -61,7 +59,6 @@ def test_qdrant_migrate(
6159
assert len(recs) == 100
6260

6361

64-
@pytest.mark.skip()
6562
def test_qdrant_migrate_bad_url(
6663
qdrant_collection_name: str,
6764
postgres_connection_string: str,
@@ -79,7 +76,7 @@ def test_qdrant_migrate_bad_url(
7976
"qdrant",
8077
"migrate",
8178
qdrant_collection_name,
82-
"", # Bad HTTP URL as intended.
79+
"INVALID", # Bad HTTP URL as intended.
8380
"", # no API key needed in :memory: mode
8481
postgres_connection_string,
8582
],

0 commit comments

Comments
 (0)