From 0f78418c5c60c8ed87646a17a00e4d690ca8527a Mon Sep 17 00:00:00 2001 From: Paul O'Leary McCann Date: Thu, 26 Jan 2023 14:28:10 +0900 Subject: [PATCH] Mark tests as slow --- spacy/tests/test_cli_app.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/spacy/tests/test_cli_app.py b/spacy/tests/test_cli_app.py index e82165f1d..19b2073a0 100644 --- a/spacy/tests/test_cli_app.py +++ b/spacy/tests/test_cli_app.py @@ -200,6 +200,7 @@ def noop_config(): yield cfg +@pytest.mark.slow @pytest.mark.parametrize( "cmd", ["debug config", "debug data", "train", "assemble"], @@ -217,6 +218,7 @@ def test_multi_code(cmd, code_paths, data_paths, noop_config): assert result.returncode == 0 +@pytest.mark.slow def test_multi_code_evaluate(code_paths, data_paths, noop_config): # Evaluation requires a model, not a config, so this works differently from # the other commands.