mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 12:18:04 +03:00
8 lines
109 B
Python
8 lines
109 B
Python
import pytest
|
|
from spacy.en import English
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
def EN():
|
|
return English()
|