We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b15490 commit 519b860Copy full SHA for 519b860
stanza/tests/morphseg/test_stanza_integration.py
@@ -6,6 +6,7 @@
6
import pytest
7
import stanza
8
from stanza.models.common.doc import Document
9
+from stanza.tests import TEST_MODELS_DIR
10
11
pytestmark = [pytest.mark.travis, pytest.mark.pipeline]
12
@@ -18,6 +19,7 @@ def en_pipeline(self):
18
19
return stanza.Pipeline(
20
lang='en',
21
processors='tokenize,morphseg',
22
+ model_dir=TEST_MODELS_DIR,
23
download_method=None
24
)
25
0 commit comments