spaCy/spacy/tests/conftest.py

80 lines
1.8 KiB
Python
Raw Normal View History

2017-01-11 15:56:32 +03:00
# coding: utf-8
from __future__ import unicode_literals
from ..en import English
from ..de import German
2017-01-11 15:56:32 +03:00
from ..es import Spanish
from ..it import Italian
from ..fr import French
from ..pt import Portuguese
from ..nl import Dutch
from ..sv import Swedish
from ..hu import Hungarian
from ..tokens import Doc
from ..attrs import ORTH, TAG, HEAD, DEP
from StringIO import StringIO
import pytest
LANGUAGES = [English, German, Spanish, Italian, French, Portuguese, Dutch,
Swedish, Hungarian]
@pytest.fixture(params=LANGUAGES)
def tokenizer(request):
lang = request.param
return lang.Defaults.create_tokenizer()
@pytest.fixture
def en_tokenizer():
return English.Defaults.create_tokenizer()
2017-01-11 15:56:32 +03:00
@pytest.fixture
def en_vocab():
return English.Defaults.create_vocab()
@pytest.fixture
def de_tokenizer():
return German.Defaults.create_tokenizer()
@pytest.fixture
def hu_tokenizer():
return Hungarian.Defaults.create_tokenizer()
@pytest.fixture
def text_file():
return StringIO()
# deprecated, to be replaced with more specific instances
@pytest.fixture(scope="session")
def EN():
2016-10-17 02:52:49 +03:00
return English()
2016-05-03 13:51:47 +03:00
2017-01-11 15:56:32 +03:00
# deprecated, to be replaced with more specific instances
@pytest.fixture(scope="session")
2016-05-03 13:51:47 +03:00
def DE():
2016-10-17 02:52:49 +03:00
return German()
def pytest_addoption(parser):
parser.addoption("--models", action="store_true",
help="include tests that require full models")
parser.addoption("--vectors", action="store_true",
help="include word vectors tests")
parser.addoption("--slow", action="store_true",
help="include slow tests")
def pytest_runtest_setup(item):
for opt in ['models', 'vectors', 'slow']:
if opt in item.keywords and not item.config.getoption("--%s" % opt):
pytest.skip("need --%s option to run" % opt)