From 6c4290847b99f817e7aba61ef5cb342b77e6db6a Mon Sep 17 00:00:00 2001 From: Sanket Kedia Date: Wed, 24 Jul 2024 14:32:06 -0700 Subject: [PATCH] [TST] add hypothesis collection id to logs (#2573) ## Description of changes *Summarize the changes made by this PR.* - Improvements & Bug fixes - For debugging CI tests ## Test plan *How are these changes tested?* - [x] Tests pass locally with `pytest` for python, `yarn test` for js, `cargo test` for rust ## Documentation Changes None --- chromadb/test/property/test_embeddings.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/chromadb/test/property/test_embeddings.py b/chromadb/test/property/test_embeddings.py index 75e42f0a991..b97440d9a84 100644 --- a/chromadb/test/property/test_embeddings.py +++ b/chromadb/test/property/test_embeddings.py @@ -312,6 +312,8 @@ def initialize(self, collection: strategies.Collection): print( "[test_embeddings][initialize] Initialize collection id ", self.collection._model["id"], + " hypothesis generated collection id ", + collection.id, ) self.log_operation_count = 0 self.unique_ids_in_log: Set[ID] = set()