From 92b9b631ef2efd834cfde471a1f95fe7a3707336 Mon Sep 17 00:00:00 2001 From: Ines Montani Date: Fri, 27 Mar 2020 10:51:32 +0100 Subject: [PATCH] xfail -> skip --- spacy/tests/regression/test_issue4725.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/tests/regression/test_issue4725.py b/spacy/tests/regression/test_issue4725.py index 720da93e3..ca6c3f767 100644 --- a/spacy/tests/regression/test_issue4725.py +++ b/spacy/tests/regression/test_issue4725.py @@ -5,7 +5,7 @@ from spacy.lang.en import English from spacy.vocab import Vocab -@pytest.mark.xfail(reason="currently hangs") +@pytest.mark.skip(reason="currently hangs") def test_issue4725(): # ensures that this runs correctly and doesn't hang or crash because of the global vectors vocab = Vocab(vectors_name="test_vocab_add_vector")