* Mark space tests as requiring model

This commit is contained in:
Matthew Honnibal 2015-08-26 19:22:50 +02:00
parent ff9db9f3ae
commit 884251801e

View File

@ -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'