From f12b9190f665ac03a8161eee0cd620b89376312a Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Wed, 15 Aug 2018 15:55:31 +0200 Subject: [PATCH] Xfail test for issue #2671 --- spacy/tests/regression/test_issue2671.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/spacy/tests/regression/test_issue2671.py b/spacy/tests/regression/test_issue2671.py index 3db36ced4..d5c62940d 100644 --- a/spacy/tests/regression/test_issue2671.py +++ b/spacy/tests/regression/test_issue2671.py @@ -1,7 +1,8 @@ # coding: utf-8 from __future__ import unicode_literals -from spacy.lang.en import English -from spacy.matcher import Matcher +import pytest +from ...lang.en import English +from ...matcher import Matcher def get_rule_id(nlp, matcher, doc): matches = matcher(doc) @@ -11,6 +12,7 @@ def get_rule_id(nlp, matcher, doc): return rule_id +@pytest.mark.xfail def test_issue2671(): nlp = English() matcher = Matcher(nlp.vocab)