From 14cc42acb0abc0462b8ddf20156fb2da067d73be Mon Sep 17 00:00:00 2001 From: Adriane Boyd Date: Wed, 1 Mar 2023 20:22:54 +0100 Subject: [PATCH] Skip test_lstm_forward_training_fuzz on aarch64 (#856) --- thinc/tests/backends/test_ops.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/thinc/tests/backends/test_ops.py b/thinc/tests/backends/test_ops.py index e46d14872..111c4c402 100644 --- a/thinc/tests/backends/test_ops.py +++ b/thinc/tests/backends/test_ops.py @@ -2,6 +2,7 @@ import pytest import numpy +import platform from hypothesis import given, settings from hypothesis.strategies import composite, integers from numpy.testing import assert_allclose @@ -1260,6 +1261,7 @@ def test_lstm_forward_training(ops, depth, dirs, nO, batch_size, nI): assert_allclose(Y, reference[0], atol=1e-4, rtol=1e-3) +@pytest.mark.skipif(platform.machine() == "aarch64", reason="Flaky, skip temporarily") @pytest.mark.parametrize("ops", XP_OPS) @settings(max_examples=MAX_EXAMPLES, deadline=None) @given(args=draw_lstm_args())