deb_skip_sequencelike_on_armel
authorNeuroDebian Team <team@neuro.debian.net>
Mon, 6 Oct 2014 15:53:42 +0000 (15:53 +0000)
committerYaroslav Halchenko <debian@onerussian.com>
Mon, 6 Oct 2014 15:53:42 +0000 (15:53 +0000)
Gbp-Pq: Name deb_skip_sequencelike_on_armel

pandas/tests/test_frame.py

index 1cada8efb6c6fdd7690c76fe92dc03924ed43d9a..0cbab3e02ee144947dd7e038c973b23bef334a7e 100644 (file)
@@ -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),