From d9482ddd5e70921d132c7e62fdb5bd2cb1e8b04c Mon Sep 17 00:00:00 2001 From: Yunchu Lee Date: Tue, 12 Dec 2023 10:51:09 +0900 Subject: [PATCH] skip failure TC with adding issue number --- 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 dd86fcf46d2..cc2efcd0b89 100644 --- a/tests/e2e/cli/detection/test_detection.py +++ b/tests/e2e/cli/detection/test_detection.py @@ -348,6 +348,8 @@ def test_otx_eval(self, template, tmp_dir_path): def test_otx_multi_gpu_train_semisl(self, template, tmp_dir_path): if not (Path(template.model_template_path).parent / "semisl").is_dir(): pytest.skip(f"Semi-SL training type isn't available for {template.name}") + if template.name == "ResNeXt101-ATSS": + pytest.skip(f"Issue#2705: multi-gpu training e2e test failure for {template.name}") tmp_dir_path = tmp_dir_path / "detection/test_multi_gpu_semisl" args_semisl_multigpu = copy.deepcopy(args_semisl) args_semisl_multigpu["--gpus"] = "0,1"