From 884251801ea4e3c26e4f9f606f6ee2c091fd488c Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Wed, 26 Aug 2015 19:22:50 +0200 Subject: [PATCH] * Mark space tests as requiring model --- tests/tagger/test_spaces.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/tagger/test_spaces.py b/tests/tagger/test_spaces.py index c3052160e..0ef05637b 100644 --- a/tests/tagger/test_spaces.py +++ b/tests/tagger/test_spaces.py @@ -14,6 +14,7 @@ def tagged(EN): tokens = EN(string, tag=True, parse=False) return tokens +@pytest.mark.models def test_spaces(tagged): assert tagged[0].pos != SPACE assert tagged[0].pos_ != 'SPACE'