From 2190a5163f20f6e61787ebbbd1dbb72a428fd10d Mon Sep 17 00:00:00 2001 From: Yunchu Lee Date: Thu, 12 Oct 2023 16:07:38 +0900 Subject: [PATCH] Add skip to chained TC for issue #2548 (#2552) --- 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 cca27634b22..a5eb2ead206 100644 --- a/tests/e2e/cli/detection/test_detection.py +++ b/tests/e2e/cli/detection/test_detection.py @@ -221,6 +221,8 @@ def test_otx_deploy_openvino(self, template, tmp_dir_path): def test_otx_eval_deployment(self, template, tmp_dir_path): if template.name == "YOLOX-L": pytest.skip(reason="Issue#2518: YOLOX-L, Tiling-ATSS showed 0.0 after export") + if template.name == "SSD": + pytest.skip(reason="Issue#2548: Exported model performance is too low") tmp_dir_path = tmp_dir_path / "detection" otx_eval_deployment_testing(template, tmp_dir_path, otx_dir, args, threshold=0.0)