Temporarily disable ner and rehearse tests

Until rehearse is implemented again in the refactored parser.
This commit is contained in:
Daniël de Kok 2022-04-01 10:12:45 +02:00
parent bf7910707d
commit 98c5a6c2d0

View File

@ -203,7 +203,8 @@ def _optimize(nlp, component: str, data: List, rehearse: bool):
return nlp
@pytest.mark.parametrize("component", ["ner", "tagger", "parser", "textcat_multilabel"])
# Fixme: reenable ner and parser when rehearsal is implemented.
@pytest.mark.parametrize("component", ["tagger", "textcat_multilabel"])
def test_rehearse(component):
nlp = spacy.blank("en")
nlp.add_pipe(component)