fix test_build_dependencies by ignoring new libs

This commit is contained in:
svlandeg 2020-06-20 22:49:37 +02:00
parent 256d4c27c8
commit 6179774278
2 changed files with 2 additions and 2 deletions

View File

@ -1166,7 +1166,7 @@ def _fix_pretrained_vectors_name(nlp):
else:
raise ValueError(Errors.E092)
if nlp.vocab.vectors.size != 0:
link_vectors_to_models(nlp.vocab, skip_rank=True)
link_vectors_to_models(nlp.vocab)
for name, proc in nlp.pipeline:
if not hasattr(proc, "cfg"):
continue

View File

@ -10,7 +10,7 @@ def test_build_dependencies():
"mock",
"flake8",
]
libs_ignore_setup = ["fugashi", "natto-py", "pythainlp"]
libs_ignore_setup = ["fugashi", "natto-py", "pythainlp", "sudachipy", "sudachidict_core"]
# check requirements.txt
req_dict = {}