From f6c2f3cc16684a9f3cdfcf4fda6456d8d31a39ce Mon Sep 17 00:00:00 2001 From: Bartosz Sledz Date: Tue, 12 Jan 2021 05:10:48 +0100 Subject: [PATCH] Change failing test ticket number (#3677) --- ngraph/python/tests/__init__.py | 2 +- ngraph/python/tests/test_onnx/test_backend.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ngraph/python/tests/__init__.py b/ngraph/python/tests/__init__.py index 3d7c68fdba55f7..1509bfea250f16 100644 --- a/ngraph/python/tests/__init__.py +++ b/ngraph/python/tests/__init__.py @@ -58,7 +58,7 @@ def xfail_test(reason="Mark the test as expected to fail", strict=True): "SequenceEmpty, SequenceInsert, SequenceErase, SequenceLength ") xfail_issue_33606 = xfail_test(reason="RuntimeError: nGraph does not support the following ONNX operations:" "Det") -xfail_issue_33616 = xfail_test(reason="Add ceil_mode for Max and Avg pooling (reference implementation)") +xfail_issue_45486 = xfail_test(reason="Dilations attribute for MaxPool operator is not supported") xfail_issue_33644 = xfail_test(reason="RuntimeError: nGraph does not support the following ONNX operations:" "Compress") xfail_issue_33651 = xfail_test(reason="RuntimeError: nGraph does not support the following ONNX operations:" diff --git a/ngraph/python/tests/test_onnx/test_backend.py b/ngraph/python/tests/test_onnx/test_backend.py index 9a97f3af6f5ddb..81ad11a9455e8a 100644 --- a/ngraph/python/tests/test_onnx/test_backend.py +++ b/ngraph/python/tests/test_onnx/test_backend.py @@ -33,7 +33,7 @@ xfail_issue_39662, xfail_issue_33540, xfail_issue_34314, - xfail_issue_33616, + xfail_issue_45486, xfail_issue_38086, xfail_issue_38087, xfail_issue_40957, @@ -187,7 +187,7 @@ def expect_fail(test_case_path, xfail): # type: (str) -> None "OnnxBackendNodeModelTest.test_top_k_smallest_cpu", "OnnxBackendNodeModelTest.test_constantofshape_int_shape_zero_cpu", "OnnxBackendNodeModelTest.test_gather_negative_indices_cpu"), - (xfail_issue_33616, + (xfail_issue_45486, "OnnxBackendNodeModelTest.test_maxpool_2d_dilations_cpu"), (xfail_issue_38086, "OnnxBackendNodeModelTest.test_dynamicquantizelinear_min_adjusted_expanded_cpu",