mirror of https://github.com/explosion/spaCy.git
8 lines
131 B
Python
8 lines
131 B
Python
|
import pytest
|
||
|
from spacy.en import English
|
||
|
|
||
|
|
||
|
@pytest.fixture(scope="session")
|
||
|
def en_nlp():
|
||
|
return English(load_vectors=False)
|