From 8f6fcf54c638c3c03ca08df7c31a7cdbb9c75bf9 Mon Sep 17 00:00:00 2001 From: driazati Date: Thu, 30 Jun 2022 08:22:58 -0700 Subject: [PATCH] [skip ci] Disable flaky test `test_empty_like` See #11967 --- tests/python/frontend/pytorch/test_forward.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/python/frontend/pytorch/test_forward.py b/tests/python/frontend/pytorch/test_forward.py index f039a00f5d91..d411d9c874d4 100644 --- a/tests/python/frontend/pytorch/test_forward.py +++ b/tests/python/frontend/pytorch/test_forward.py @@ -3820,6 +3820,7 @@ def test_func(): verify_model_with_input(test_func, []) +@pytest.mark.skip(reason="See https://github.com/apache/tvm/issues/11967") def test_empty_like(): def test_func(data): return torch.empty_like(data)