Skip to content

Commit

Permalink
Try adding flaky skips
Browse files Browse the repository at this point in the history
  • Loading branch information
honnibal committed Jun 4, 2024
1 parent 0ca1012 commit 671d07a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions thinc/tests/backends/test_ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -1384,6 +1384,7 @@ def test_lstm_forward_training(ops, depth, dirs, nO, batch_size, nI):


@pytest.mark.skipif(platform.machine() == "aarch64", reason="Flaky, skip temporarily")
@pytest.mark.skipif(platform.machine() == "win_amd64", reason="Flaky, skip temporarily")
@pytest.mark.parametrize("ops", XP_OPS)
@settings(max_examples=MAX_EXAMPLES, deadline=None)
@given(args=draw_lstm_args())
Expand Down
1 change: 1 addition & 0 deletions thinc/tests/layers/test_linear.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ def test_linear_dimensions_on_data():
y.max.assert_called_with()


@pytest.mark.skipif(platform.machine() == "win_amd64", reason="Flaky, skip temporarily")
@given(arrays_OI_O_BI(max_batch=8, max_out=8, max_in=8))
def test_begin_update_matches_predict(W_b_input):
model = get_model(W_b_input)
Expand Down

0 comments on commit 671d07a

Please sign in to comment.