Skip to content

Commit caa5a05

Browse files
committed
try removing restriction on windows
1 parent 8d07cae commit caa5a05

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

pandas/tests/indexing/test_coercion.py

-7
Original file line numberDiff line numberDiff line change
@@ -1183,13 +1183,6 @@ def _assert_replace_conversion(self, from_key, to_key, how):
11831183

11841184
result = obj.replace(replacer)
11851185

1186-
# buggy on windows for bool/int64
1187-
if (from_key == 'bool' and
1188-
to_key == 'int64' and
1189-
tm.is_platform_windows()):
1190-
pytest.skip("windows platform buggy: {0} -> {1}".format
1191-
(from_key, to_key))
1192-
11931186
if ((from_key == 'float64' and to_key in ('int64')) or
11941187
(from_key == 'complex128' and
11951188
to_key in ('int64', 'float64'))):

0 commit comments

Comments
 (0)