2015-06-07 19:07:59 +03:00
|
|
|
import pytest
|
2015-12-07 08:01:28 +03:00
|
|
|
from spacy.en import English
|
2015-07-14 01:08:50 +03:00
|
|
|
import os
|
2015-06-07 19:07:59 +03:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
|
|
def en_nlp():
|
2015-12-07 08:01:28 +03:00
|
|
|
return English()
|