From c3801166bf31757db0f3c684d5b0786989935deb Mon Sep 17 00:00:00 2001 From: Yunchu Lee Date: Thu, 12 Oct 2023 14:26:09 +0900 Subject: [PATCH] add skip TCs due to the issue #2548 --- tests/e2e/cli/detection/test_detection.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/e2e/cli/detection/test_detection.py b/tests/e2e/cli/detection/test_detection.py index bb2e59da6ad..cca27634b22 100644 --- a/tests/e2e/cli/detection/test_detection.py +++ b/tests/e2e/cli/detection/test_detection.py @@ -147,6 +147,8 @@ def test_otx_eval(self, template, tmp_dir_path): @pytest.mark.parametrize("template", templates, ids=templates_ids) @pytest.mark.parametrize("half_precision", [True, False]) def test_otx_eval_openvino(self, template, tmp_dir_path, half_precision): + if template.name == "YOLOX-L" or template.name == "SSD": + pytest.skip(reason="Issue#2548: Exported model performance is too low") tmp_dir_path = tmp_dir_path / "detection" otx_eval_openvino_testing(template, tmp_dir_path, otx_dir, args, threshold=0.2, half_precision=half_precision)