From 02bdf490a1adeaabe62f7851132ae042446095c5 Mon Sep 17 00:00:00 2001 From: ines Date: Mon, 13 Mar 2017 13:00:22 +0100 Subject: [PATCH] Remove regression test to see if it caused pytest Travis error --- spacy/tests/regression/test_issue636.py | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 spacy/tests/regression/test_issue636.py diff --git a/spacy/tests/regression/test_issue636.py b/spacy/tests/regression/test_issue636.py deleted file mode 100644 index 12f0d8135..000000000 --- a/spacy/tests/regression/test_issue636.py +++ /dev/null @@ -1,16 +0,0 @@ -# coding: utf8 -from __future__ import unicode_literals - -from ...tokens.doc import Doc -import pytest - - -@pytest.mark.xfail -@pytest.mark.models -@pytest.mark.parametrize('text', ["I cant do this."]) -def test_issue636(EN, text): - """Test that to_bytes and from_bytes don't change the token lemma.""" - doc1 = EN(text) - doc2 = Doc(EN.vocab) - doc2.from_bytes(doc1.to_bytes()) - assert [t.lemma_ for t in doc1] == [t.lemma_ for t in doc2]