Skip to content

Commit 380fa1d

Browse files
committed
skip test_precision
1 parent 7a02535 commit 380fa1d

File tree

3 files changed

+14
-0
lines changed

3 files changed

+14
-0
lines changed

debian/changelog

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ pandas (0.15.0-2) unstable; urgency=medium
44
- specify minimal numpy to be 1.7
55
* debian/patches
66
- deb_skip_stata_on_bigendians skip test_stata again on BE platforms
7+
- deb_skip_test_precision_i386 skip test_precision_conversion on 32bit
78

89
-- Yaroslav Halchenko <[email protected]> Thu, 30 Oct 2014 23:09:13 -0400
910

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
--- a/pandas/io/tests/test_parsers.py
2+
+++ b/pandas/io/tests/test_parsers.py
3+
@@ -3186,6 +3186,9 @@ class TestCParserLowMemory(ParserTests,
4+
self.assertEqual(result.dtype, ex_dtype)
5+
6+
def test_precise_conversion(self):
7+
+ import platform
8+
+ if platform.architecture()[0] == '32bit':
9+
+ raise nose.SkipTest("Known issue on 32bit platforms. See GH #8646")
10+
# GH #8002
11+
from decimal import Decimal
12+
normal_errors = []

debian/patches/series

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
deb_skip_test_precision_i386
12
deb_skip_stata_on_bigendians
23
deb_disable_googleanalytics
34
deb_skip_sequencelike_on_armel

0 commit comments

Comments
 (0)