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 f4bf36a commit b156c28Copy full SHA for b156c28
python/pyspark/pandas/tests/test_series_datetime.py
@@ -262,10 +262,12 @@ def test_ceil(self):
262
self.check_func(lambda x: x.dt.floor(freq="min"))
263
self.check_func(lambda x: x.dt.floor(freq="H"))
264
265
+ @unittest.skip("Unsupported locale setting")
266
def test_month_name(self):
267
self.check_func(lambda x: x.dt.month_name())
268
self.check_func(lambda x: x.dt.month_name(locale="en_US.UTF-8"))
269
270
271
def test_day_name(self):
272
self.check_func(lambda x: x.dt.day_name())
273
self.check_func(lambda x: x.dt.day_name(locale="en_US.UTF-8"))
0 commit comments