@@ -130,6 +130,8 @@ def test_otx_train_kpi_test(self, template, category):
130130 @pytest .mark .parametrize ("template" , templates , ids = templates_ids )
131131 @pytest .mark .parametrize ("category" , SAMPLED_ANOMALY_DATASET_CATEGORIES )
132132 def test_otx_export_eval_openvino (self , template , tmp_dir_path , category ):
133+ if category in ["tile" , "grid" ]:
134+ pytest .skip ("Issue#2189: Anomaly task sometimes shows performance drop" )
133135 self .performance [template .name ] = {}
134136 category_data_args = self ._apply_category (anomaly_detection_data_args , category )
135137
@@ -161,6 +163,8 @@ def test_otx_export_eval_openvino(self, template, tmp_dir_path, category):
161163 @pytest .mark .parametrize ("template" , templates , ids = templates_ids )
162164 @pytest .mark .parametrize ("category" , SAMPLED_ANOMALY_DATASET_CATEGORIES )
163165 def test_otx_deploy_eval_deployment (self , template , tmp_dir_path , category ):
166+ if category in ["tile" , "cable" ]:
167+ pytest .skip ("Issue#2189: Anomaly task sometimes shows performance drop" )
164168 self .performance [template .name ] = {}
165169 category_data_args = self ._apply_category (anomaly_detection_data_args , category )
166170
@@ -192,6 +196,8 @@ def test_otx_deploy_eval_deployment(self, template, tmp_dir_path, category):
192196 @pytest .mark .parametrize ("template" , templates , ids = templates_ids )
193197 @pytest .mark .parametrize ("category" , SAMPLED_ANOMALY_DATASET_CATEGORIES )
194198 def test_nncf_optimize_eval (self , template , tmp_dir_path , category ):
199+ if category in ["tile" , "cable" , "grid" ]:
200+ pytest .skip ("Issue#2189: Anomaly task sometimes shows performance drop" )
195201 self .performance [template .name ] = {}
196202 category_data_args = self ._apply_category (anomaly_detection_data_args , category )
197203
@@ -226,6 +232,8 @@ def test_nncf_optimize_eval(self, template, tmp_dir_path, category):
226232 @pytest .mark .parametrize ("template" , templates , ids = templates_ids )
227233 @pytest .mark .parametrize ("category" , SAMPLED_ANOMALY_DATASET_CATEGORIES )
228234 def test_pot_optimize_eval (self , template , tmp_dir_path , category ):
235+ if category in ["tile" , "grid" ]:
236+ pytest .skip ("Issue#2189: Anomaly task sometimes shows performance drop" )
229237 self .performance [template .name ] = {}
230238 category_data_args = self ._apply_category (anomaly_detection_data_args , category )
231239
0 commit comments