2015-09-28 12:22:13 +00:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
import pytest
|
2015-10-10 06:58:57 +00:00
|
|
|
import os
|
2015-09-28 12:22:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(scope='session')
|
|
|
|
def nlp():
|
2015-12-07 05:01:28 +00:00
|
|
|
from spacy.en import English
|
2015-12-29 17:00:48 +00:00
|
|
|
if os.environ.get('SPACY_DATA'):
|
2016-01-16 11:23:45 +00:00
|
|
|
data_dir = os.environ.get('SPACY_DATA')
|
2015-12-29 17:00:48 +00:00
|
|
|
else:
|
2016-01-16 11:23:45 +00:00
|
|
|
data_dir = None
|
|
|
|
return English(data_dir=data_dir)
|
2015-09-28 12:22:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture()
|
|
|
|
def doc(nlp):
|
|
|
|
return nlp('Hello, world. Here are two sentences.')
|