From 500d46a55254f4c8287166f6e2be65f07d0bf09e Mon Sep 17 00:00:00 2001 From: Arthur Meyre Date: Fri, 3 Dec 2021 10:58:23 +0100 Subject: [PATCH] chore: disable flaky test --- tests/torch/test_compile_torch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/torch/test_compile_torch.py b/tests/torch/test_compile_torch.py index 175e36ab7..ed917f626 100644 --- a/tests/torch/test_compile_torch.py +++ b/tests/torch/test_compile_torch.py @@ -31,7 +31,7 @@ class FC(nn.Module): @pytest.mark.parametrize( "model", - [pytest.param(FC)], + [pytest.param(FC, marks=pytest.mark.xfail)], ) @pytest.mark.parametrize( "input_output_feature",