diff --git a/spacy/tests/parser/test_ner.py b/spacy/tests/parser/test_ner.py index a536155cd..62b8f9704 100644 --- a/spacy/tests/parser/test_ner.py +++ b/spacy/tests/parser/test_ner.py @@ -623,6 +623,7 @@ def test_is_distillable(): assert ner.is_distillable +@pytest.mark.slow @pytest.mark.parametrize("max_moves", [0, 1, 5, 100]) def test_distill(max_moves): teacher = English() diff --git a/spacy/tests/parser/test_parse.py b/spacy/tests/parser/test_parse.py index b708210e7..2f2fa397e 100644 --- a/spacy/tests/parser/test_parse.py +++ b/spacy/tests/parser/test_parse.py @@ -463,6 +463,7 @@ def test_is_distillable(): assert parser.is_distillable +@pytest.mark.slow @pytest.mark.parametrize("max_moves", [0, 1, 5, 100]) def test_distill(max_moves): teacher = English()