@@ -574,7 +574,7 @@ def test_empty_input_chunks(self):
574574
575575 expected_chunks = []
576576
577- with TestPipeline (is_integration_test = True ) as p :
577+ with TestPipeline () as p :
578578 result = (p | beam .Create (test_chunks ) | Enrichment (handler ))
579579 assert_that (
580580 result ,
@@ -702,7 +702,7 @@ def test_filtered_search_with_cosine_similarity_and_batching(self):
702702 embedding = Embedding (dense_embedding = [0.3 , 0.4 , 0.5 ]))
703703 ]
704704
705- with TestPipeline (is_integration_test = True ) as p :
705+ with TestPipeline () as p :
706706 result = (p | beam .Create (test_chunks ) | Enrichment (handler ))
707707 assert_that (
708708 result ,
@@ -807,7 +807,7 @@ def test_filtered_search_with_bm25_full_text_and_batching(self):
807807 embedding = Embedding ())
808808 ]
809809
810- with TestPipeline (is_integration_test = True ) as p :
810+ with TestPipeline () as p :
811811 result = (p | beam .Create (test_chunks ) | Enrichment (handler ))
812812 assert_that (
813813 result ,
@@ -948,7 +948,7 @@ def test_vector_search_with_euclidean_distance(self):
948948 embedding = Embedding (dense_embedding = [0.3 , 0.4 , 0.5 ]))
949949 ]
950950
951- with TestPipeline (is_integration_test = True ) as p :
951+ with TestPipeline () as p :
952952 result = (p | beam .Create (test_chunks ) | Enrichment (handler ))
953953 assert_that (
954954 result ,
@@ -1088,7 +1088,7 @@ def test_vector_search_with_inner_product_similarity(self):
10881088 embedding = Embedding (dense_embedding = [0.3 , 0.4 , 0.5 ]))
10891089 ]
10901090
1091- with TestPipeline (is_integration_test = True ) as p :
1091+ with TestPipeline () as p :
10921092 result = (p | beam .Create (test_chunks ) | Enrichment (handler ))
10931093 assert_that (
10941094 result ,
@@ -1153,7 +1153,7 @@ def test_keyword_search_with_inner_product_sparse_embedding(self):
11531153 sparse_embedding = ([1 , 2 , 3 , 4 ], [0.05 , 0.41 , 0.05 , 0.41 ])))
11541154 ]
11551155
1156- with TestPipeline (is_integration_test = True ) as p :
1156+ with TestPipeline () as p :
11571157 result = (p | beam .Create (test_chunks ) | Enrichment (handler ))
11581158 assert_that (
11591159 result ,
@@ -1226,7 +1226,7 @@ def test_hybrid_search(self):
12261226 embedding = Embedding (dense_embedding = [0.1 , 0.2 , 0.3 ]))
12271227 ]
12281228
1229- with TestPipeline (is_integration_test = True ) as p :
1229+ with TestPipeline () as p :
12301230 result = (p | beam .Create (test_chunks ) | Enrichment (handler ))
12311231 assert_that (
12321232 result ,
0 commit comments