mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 20:28:20 +03:00
14 lines
244 B
Python
14 lines
244 B
Python
|
from __future__ import unicode_literals
|
||
|
import pytest
|
||
|
|
||
|
|
||
|
@pytest.fixture(scope='session')
|
||
|
def nlp():
|
||
|
from spacy.en import English
|
||
|
return English()
|
||
|
|
||
|
|
||
|
@pytest.fixture()
|
||
|
def doc(nlp):
|
||
|
return nlp('Hello, world. Here are two sentences.')
|