File tree 1 file changed +1
-4
lines changed
1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -18,13 +18,11 @@ def test_client_is_good(qdrant_client: QdrantClient) -> None:
18
18
assert qdrant_client is not None
19
19
20
20
21
- @pytest .mark .skip ()
22
21
def test_client_count (qdrant_client : QdrantClient , qdrant_collection_name ) -> None :
23
22
count_response = qdrant_client .count (collection_name = qdrant_collection_name )
24
23
assert count_response .count == 100
25
24
26
25
27
- @pytest .mark .skip ()
28
26
def test_qdrant_migrate (
29
27
qdrant_client : QdrantClient ,
30
28
qdrant_collection_name : str ,
@@ -61,7 +59,6 @@ def test_qdrant_migrate(
61
59
assert len (recs ) == 100
62
60
63
61
64
- @pytest .mark .skip ()
65
62
def test_qdrant_migrate_bad_url (
66
63
qdrant_collection_name : str ,
67
64
postgres_connection_string : str ,
@@ -79,7 +76,7 @@ def test_qdrant_migrate_bad_url(
79
76
"qdrant" ,
80
77
"migrate" ,
81
78
qdrant_collection_name ,
82
- "" , # Bad HTTP URL as intended.
79
+ "INVALID " , # Bad HTTP URL as intended.
83
80
"" , # no API key needed in :memory: mode
84
81
postgres_connection_string ,
85
82
],
You can’t perform that action at this time.
0 commit comments