From d80f324fd343baeb8f05e71f28199159d249bbdc Mon Sep 17 00:00:00 2001 From: Hariharan Seshadri Date: Fri, 4 Oct 2019 05:49:24 -0700 Subject: [PATCH] Add Pad test to NGraph specific exclusion list (#2006) * Add Pad test to NGraph specific exclusion list --- onnxruntime/test/python/onnx_backend_test_series.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/onnxruntime/test/python/onnx_backend_test_series.py b/onnxruntime/test/python/onnx_backend_test_series.py index 45e051c56c..fc93440659 100644 --- a/onnxruntime/test/python/onnx_backend_test_series.py +++ b/onnxruntime/test/python/onnx_backend_test_series.py @@ -167,7 +167,8 @@ def create_backend_test(testname=None): '^test_flatten_negative_axis.*', '^test_reduce_[a-z1-9_]*_negative_axes_.*', 'test_squeeze_negative_axes_cpu', - 'test_unsqueeze_negative_axes_cpu'] + 'test_unsqueeze_negative_axes_cpu', + 'test_constant_pad_cpu'] if c2.supports_device('OPENVINO_GPU_FP32') or c2.supports_device('OPENVINO_GPU_FP16'): current_failing_tests.append('^test_div_cpu*')