From 7a5b7f5561b34f13da1e0aa26af18b94b62494cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20W=C3=A4lchli?= Date: Wed, 1 Nov 2023 15:45:25 +0100 Subject: [PATCH] Skip hanging collective test (#18908) --- tests/tests_fabric/plugins/collectives/test_torch_collective.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tests_fabric/plugins/collectives/test_torch_collective.py b/tests/tests_fabric/plugins/collectives/test_torch_collective.py index ba72286ac0..22feb8fc9b 100644 --- a/tests/tests_fabric/plugins/collectives/test_torch_collective.py +++ b/tests/tests_fabric/plugins/collectives/test_torch_collective.py @@ -230,8 +230,8 @@ def _test_distributed_collectives_fn(strategy, collective): torch.testing.assert_close(out, expected) +@pytest.mark.skip(reason="test hangs too often") @skip_distributed_unavailable -@pytest.mark.flaky(reruns=5) @pytest.mark.parametrize( "n", [1, pytest.param(2, marks=[RunIf(skip_windows=True), pytest.mark.xfail(raises=TimeoutError, strict=False)])] )