From 6b5302cdf36bb0232df898375939cf91ee5c59c5 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Wed, 27 Oct 2021 23:24:33 +0200 Subject: [PATCH] More xfail. 7 failures --- spacy/tests/parser/test_ner.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/spacy/tests/parser/test_ner.py b/spacy/tests/parser/test_ner.py index dffdff1ec..b22d2deee 100644 --- a/spacy/tests/parser/test_ner.py +++ b/spacy/tests/parser/test_ner.py @@ -359,6 +359,7 @@ def test_overfitting_IO(use_upper): assert_equal(batch_deps_1, no_batch_deps) +@pytest.mark.xfail(reason="no beam parser yet") def test_beam_ner_scores(): # Test that we can get confidence values out of the beam_ner pipe beam_width = 16 @@ -394,6 +395,7 @@ def test_beam_ner_scores(): assert 0 - eps <= score <= 1 + eps +@pytest.mark.xfail(reason="no beam parser yet") def test_beam_overfitting_IO(): # Simple test to try and quickly overfit the Beam NER component nlp = English()