We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d17f1e9 commit 03537efCopy full SHA for 03537ef
pandas/tests/test_series.py
@@ -1,5 +1,6 @@
1
# pylint: disable-msg=E1101,W0612
2
3
+import sys
4
from datetime import datetime, timedelta
5
import operator
6
import string
@@ -5541,6 +5542,11 @@ def test_isin_with_i8(self):
5541
5542
#------------------------------------------------------------------------------
5543
# TimeSeries-specific
5544
def test_cummethods_bool(self):
5545
+ # GH 6270
5546
+ # looks like a buggy np.maximum.accumulate for numpy 1.6.1, py 3.2
5547
+ if _np_version_under1p7 and sys.version_info[0] == 3 and sys.version_info[1] == 2:
5548
+ raise nose.SkipTest("failure of GH6270 on numpy < 1.7 and py 3.2")
5549
+
5550
def cummin(x):
5551
return np.minimum.accumulate(x)
5552
0 commit comments