From 4b1b82378b02dae8bc1be88649371c58f21a0e01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Danie=CC=88l=20de=20Kok?= Date: Wed, 1 Feb 2023 13:35:39 +0100 Subject: [PATCH] Mark parser/NER tests as slow --- spacy/tests/parser/test_ner.py | 1 + spacy/tests/parser/test_parse.py | 1 + 2 files changed, 2 insertions(+) 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()