From: NeuroDebian Team Date: Mon, 6 Oct 2014 15:53:42 +0000 (+0000) Subject: deb_skip_sequencelike_on_armel X-Git-Tag: archive/raspbian/0.19.2-5+rpi1~1^2^2^2~2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=b85ee23febbd35da5b0089d8573b1decd40efe80;p=pandas.git deb_skip_sequencelike_on_armel Gbp-Pq: Name deb_skip_sequencelike_on_armel --- diff --git a/pandas/tests/test_frame.py b/pandas/tests/test_frame.py index 1cada8ef..0cbab3e0 100644 --- a/pandas/tests/test_frame.py +++ b/pandas/tests/test_frame.py @@ -4219,6 +4219,9 @@ class TestDataFrame(tm.TestCase, CheckIndexing, self.assertEqual(len(tst.columns), 3) def test_from_records_sequencelike(self): + import platform + if platform.uname()[4].startswith('armv'): + raise nose.SkipTest("Fails on Debian arm boxes due to locales or whatelse") df = DataFrame({'A' : np.array(np.random.randn(6), dtype = np.float64), 'A1': np.array(np.random.randn(6), dtype = np.float64), 'B' : np.array(np.arange(6), dtype = np.int64),