2019-02-14 17:31:19 +03:00
|
|
|
import pytest
|
|
|
|
from spacy.util import get_lang_class
|
|
|
|
|
|
|
|
|
|
|
|
# fmt: off
|
|
|
|
# Only include languages with no external dependencies
|
2021-07-09 16:36:35 +03:00
|
|
|
# excluded: ja, ko, th, vi, zh
|
|
|
|
LANGUAGES = ["af", "am", "ar", "az", "bg", "bn", "ca", "cs", "da", "de", "el",
|
|
|
|
"en", "es", "et", "eu", "fa", "fi", "fr", "ga", "gu", "he", "hi",
|
2023-01-31 19:30:43 +03:00
|
|
|
"hr", "hu", "hy", "id", "isl", "it", "kn", "ky", "lb", "lt", "lv",
|
|
|
|
"mk", "ml", "mr", "mul", "nb", "ne", "nl", "pl", "pt", "ro", "ru", "sa",
|
2021-07-09 16:36:35 +03:00
|
|
|
"si", "sk", "sl", "sq", "sr", "sv", "ta", "te", "ti", "tl", "tn",
|
2023-01-31 19:30:43 +03:00
|
|
|
"tr", "tt", "uk", "ur", "yo"]
|
2019-02-14 17:31:19 +03:00
|
|
|
# fmt: on
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize("lang", LANGUAGES)
|
2019-02-27 18:04:30 +03:00
|
|
|
def test_lang_initialize(lang, capfd):
|
2019-02-14 17:31:19 +03:00
|
|
|
"""Test that languages can be initialized."""
|
2019-03-07 14:25:00 +03:00
|
|
|
nlp = get_lang_class(lang)()
|
2019-02-27 18:04:30 +03:00
|
|
|
# Check for stray print statements (see #3342)
|
2019-03-07 14:25:00 +03:00
|
|
|
doc = nlp("test") # noqa: F841
|
2019-02-27 18:04:30 +03:00
|
|
|
captured = capfd.readouterr()
|
|
|
|
assert not captured.out
|