mirror of
https://github.com/explosion/spaCy.git
synced 2025-02-04 13:40:34 +03:00
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)
|