From 8704bafef543b41e026abbecd212a35f68e73ae8 Mon Sep 17 00:00:00 2001 From: aiarkinx Date: Mon, 20 Dec 2021 15:50:58 +0300 Subject: [PATCH] mark test_inference --- tests/test_ote_inference.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/test_ote_inference.py b/tests/test_ote_inference.py index a43b97fc97c..36b2b372327 100644 --- a/tests/test_ote_inference.py +++ b/tests/test_ote_inference.py @@ -19,6 +19,7 @@ import os.path as osp import torch import unittest +import pytest from ote_sdk.test_suite.e2e_test_system import e2e_pytest_api from mmcv.parallel import MMDataParallel from subprocess import run @@ -98,6 +99,7 @@ def setUpClass(cls): f'annotations/instances_val2017_short_to_{cls.shorten_to}.json') cls.shorten_annotation(cls.src_anno, cls.dst_anno, cls.shorten_to) + @pytest.mark.bugs("CVS-74364 - [OTE] mmdetection test_ote_inference.py::TestInference::test_inference faild when running on cpu") @e2e_pytest_api def test_inference(self): for cfg, device in itertools.product(MODEL_CONFIGS, DEVICES):