From bdebbef45552d698d390aa430b527ee27830f11b Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Tue, 2 Oct 2018 23:16:29 +0200 Subject: [PATCH] Remove problematic test --- spacy/tests/regression/test_issue2626.py | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 spacy/tests/regression/test_issue2626.py diff --git a/spacy/tests/regression/test_issue2626.py b/spacy/tests/regression/test_issue2626.py deleted file mode 100644 index a7be6b76a..000000000 --- a/spacy/tests/regression/test_issue2626.py +++ /dev/null @@ -1,13 +0,0 @@ -from __future__ import unicode_literals -import pytest -import spacy - -@pytest.mark.skip -def test_issue2626(): - '''Check that this sentence doesn't cause an infinite loop in the tokenizer.''' - nlp = spacy.blank('en') - text = """ - ABLEItemColumn IAcceptance Limits of ErrorIn-Service Limits of ErrorColumn IIColumn IIIColumn IVColumn VComputed VolumeUnder Registration of\xa0VolumeOver Registration of\xa0VolumeUnder Registration of\xa0VolumeOver Registration of\xa0VolumeCubic FeetCubic FeetCubic FeetCubic FeetCubic Feet1Up to 10.0100.0050.0100.005220.0200.0100.0200.010350.0360.0180.0360.0184100.0500.0250.0500.0255Over 100.5% of computed volume0.25% of computed volume0.5% of computed volume0.25% of computed volume TABLE ItemColumn IAcceptance Limits of ErrorIn-Service Limits of ErrorColumn IIColumn IIIColumn IVColumn VComputed VolumeUnder Registration of\xa0VolumeOver Registration of\xa0VolumeUnder Registration of\xa0VolumeOver Registration of\xa0VolumeCubic FeetCubic FeetCubic FeetCubic FeetCubic Feet1Up to 10.0100.0050.0100.005220.0200.0100.0200.010350.0360.0180.0360.0184100.0500.0250.0500.0255Over 100.5% of computed volume0.25% of computed volume0.5% of computed volume0.25% of computed volume ItemColumn IAcceptance Limits of ErrorIn-Service Limits of ErrorColumn IIColumn IIIColumn IVColumn VComputed VolumeUnder Registration of\xa0VolumeOver Registration of\xa0VolumeUnder Registration of\xa0VolumeOver Registration of\xa0VolumeCubic FeetCubic FeetCubic FeetCubic FeetCubic Feet1Up to 10.0100.0050.0100.005220.0200.0100.0200.010350.0360.0180.0360.0184100.0500.0250.0500.0255Over 100.5% of computed volume0.25% of computed volume0.5% of computed volume0.25% of computed volume - """ - doc = nlp.make_doc(text) -