We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39f1dec commit 21d4288Copy full SHA for 21d4288
pandas/tests/test_util.py
@@ -3,6 +3,7 @@
3
4
import nose
5
6
+import sys
7
import pandas.util
8
from pandas.util.decorators import deprecate_kwarg
9
import pandas.util.testing as tm
@@ -80,6 +81,9 @@ def test_warning(self):
80
81
self.assertNotAlmostEquals(1, 2)
82
83
def test_locale(self):
84
+ if sys.platform == 'win32':
85
+ raise nose.SkipTest("skipping on win platforms as locale not available")
86
+
87
#GH9744
88
locales = pandas.util.testing.get_locales()
89
self.assertTrue(len(locales) >= 1)
0 commit comments