File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -221,6 +221,7 @@ class StackRecommendationResult(BaseModel): # noqa: D101
221221 registration_status : str
222222 recommendation_status : 'RecommendationStatus' = 'success'
223223 companion : List ['RecommendedPackageData' ]
224+ usage_outliers : List [Dict [str , Any ]] = []
224225
225226
226227class RecommenderRequest (StackAggregatorRequest ): # noqa: D101
Original file line number Diff line number Diff line change @@ -151,6 +151,7 @@ def test_recommendation_response_with_empty_insight_response(
151151 "manifest_name" : None ,
152152 "recommendation_status" : "success" ,
153153 "registration_status" : "FREETIER" ,
154+ "usage_outliers" : [],
154155 "uuid" : None ,
155156 },
156157 }
@@ -190,6 +191,7 @@ def test_recommendation_response_with_empty_graph(
190191 "manifest_name" : None ,
191192 "recommendation_status" : "success" ,
192193 "registration_status" : "FREETIER" ,
194+ "usage_outliers" : [],
193195 "uuid" : None ,
194196 }
195197
@@ -320,5 +322,6 @@ def test_recommendation_response_with_2_packages_from_graph(
320322 "manifest_name" : None ,
321323 "recommendation_status" : "success" ,
322324 "registration_status" : "FREETIER" ,
325+ "usage_outliers" : [],
323326 "uuid" : None ,
324327 }
You can’t perform that action at this time.
0 commit comments