* Add conftest.py to tests/, to allow session-global pipeline. This allows much faster tests.

This commit is contained in:
Matthew Honnibal 2015-06-07 17:53:14 +02:00
parent 877abb0e5b
commit 674ee5dde7
1 changed files with 7 additions and 0 deletions

7
tests/conftest.py Normal file
View File

@ -0,0 +1,7 @@
import pytest
from spacy.en import English
@pytest.fixture(scope="session")
def EN():
return English()