We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7a6059 commit 334b121Copy full SHA for 334b121
tests/test_query.py
@@ -91,8 +91,14 @@ def test_custom(
91
width=1,
92
image=high_quality_image,
93
)
94
+ target_id_3 = client.add_target(
95
+ name=uuid.uuid4().hex,
96
+ width=1,
97
+ image=high_quality_image,
98
+ )
99
client.wait_for_target_processed(target_id=target_id)
100
client.wait_for_target_processed(target_id=target_id_2)
101
+ client.wait_for_target_processed(target_id=target_id_3)
102
matches = cloud_reco_client.query(image=high_quality_image, max_num_results=2)
103
assert len(matches) == 2
104
0 commit comments