* Update tests, after removal of spacy.en.attrs

This commit is contained in:
Matthew Honnibal 2015-10-09 13:37:25 +11:00
parent c64fd472b0
commit 9ff288c7bb
6 changed files with 9 additions and 8 deletions

View File

@ -3,6 +3,7 @@ import pytest
from spacy.matcher import Matcher
@pytest.mark.xfail
def test_overlap_issue118(EN):
'''Test a bug that arose from having overlapping matches'''
doc = EN.tokenizer(u'how many points did lebron james score against the boston celtics last night')

View File

@ -3,7 +3,7 @@ from __future__ import unicode_literals
import pytest
from spacy.en import attrs
from spacy import attrs
def test_attr_of_token(EN):

View File

@ -1,8 +1,8 @@
from __future__ import unicode_literals
from spacy.en import English
from spacy.en.attrs import IS_ALPHA, IS_ASCII, IS_DIGIT, IS_LOWER, IS_PUNCT
from spacy.en.attrs import IS_SPACE, IS_TITLE, IS_UPPER, LIKE_URL, LIKE_NUM
from spacy.en.attrs import IS_STOP
from spacy.attrs import IS_ALPHA, IS_ASCII, IS_DIGIT, IS_LOWER, IS_PUNCT
from spacy.attrs import IS_SPACE, IS_TITLE, IS_UPPER, LIKE_URL, LIKE_NUM
from spacy.attrs import IS_STOP
import pytest

View File

@ -2,7 +2,7 @@ from __future__ import unicode_literals
import pytest
from spacy.en.attrs import *
from spacy.attrs import *
def test_is_alpha(en_vocab):

View File

@ -60,7 +60,7 @@ def test_count_by(nlp):
# from spacy.en import English, attrs
# nlp = English()
import numpy
from spacy.en import attrs
from spacy import attrs
tokens = nlp('apple apple orange banana')
assert tokens.count_by(attrs.ORTH) == {2529: 2, 4117: 1, 6650: 1}
assert repr(tokens.to_array([attrs.ORTH])) == repr(numpy.array([[2529],

View File

@ -1,6 +1,6 @@
from __future__ import unicode_literals
import pytest
import spacy.en
import spacy
@pytest.fixture()
@ -45,7 +45,7 @@ def test_get_and_set_string_views_and_flags(nlp, token):
def test_export_to_numpy_arrays(nlp, doc):
from spacy.en.attrs import ORTH, LIKE_URL, IS_OOV
from spacy.attrs import ORTH, LIKE_URL, IS_OOV
attr_ids = [ORTH, LIKE_URL, IS_OOV]
doc_array = doc.to_array(attr_ids)