mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 12:18:04 +03:00
10 lines
216 B
Python
10 lines
216 B
Python
import pytest
|
|
from spacy.en import English, LOCAL_DATA_DIR
|
|
import os
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
def en_nlp():
|
|
data_dir = os.environ.get('SPACY_DATA', LOCAL_DATA_DIR)
|
|
return English(data_dir=data_dir)
|