spaCy/tests/website/conftest.py
2015-09-28 14:35:11 +02:00

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.')