[Pyskip failed tests (#13892)

This commit is contained in:
Anastasia Kuporosova
2022-11-07 11:46:51 +01:00
committed by GitHub
parent 995bcdbe47
commit 713eb9683f
4 changed files with 5 additions and 0 deletions

View File

@@ -484,6 +484,7 @@ def test_mvn_operator():
assert np.allclose(result, expected)
@pytest.mark.skip(reason="Sporadically failed. Need further investigation. Ticket - 95970")
def test_space_to_depth_operator():
runtime = get_runtime()

View File

@@ -25,6 +25,7 @@ from tests.test_graph.util import run_op_node
([2, 2, 4], [2, 4, 2], False, False),
],
)
@pytest.mark.skip(reason="Sporadically failed. Need further investigation. Ticket - 95970")
def test_matmul(shape_a, shape_b, transpose_a, transpose_b):
np.random.seed(133391)
left_input = -100.0 + np.random.rand(*shape_a).astype(np.float32) * 200.0

View File

@@ -323,6 +323,8 @@ def test_unregister_plugin(device):
@pytest.mark.template_plugin()
@pytest.mark.skip(reason="Sporadically failed on mac with error: Cannot add extension."
"Cannot find entry point to the extension library")
def test_add_extension_template_extension(device):
core, model = get_model_with_template_extension()
assert isinstance(model, Model)

View File

@@ -276,6 +276,7 @@ def test_inputs_outputs_property(device):
assert np.array_equal(input_data, input_tensor.data)
@pytest.mark.skip(reason="Sporadically failed. Need further investigation. Ticket - 95967")
def test_cancel(device):
core = Core()
model = core.read_model(test_net_xml, test_net_bin)