mirror of https://github.com/explosion/spaCy.git
* Add conftest.py to tests/, to allow session-global pipeline. This allows much faster tests.
This commit is contained in:
parent
877abb0e5b
commit
674ee5dde7
|
@ -0,0 +1,7 @@
|
|||
import pytest
|
||||
from spacy.en import English
|
||||
|
||||
|
||||
@pytest.fixture(scope="session")
|
||||
def EN():
|
||||
return English()
|
Loading…
Reference in New Issue