13
13
14
14
from pandas .io .pytables import read_hdf
15
15
16
+ pytestmark = pytest .mark .xfail (
17
+ using_string_dtype (), reason = "TODO(infer_string)" , strict = False
18
+ )
19
+
16
20
17
21
def test_complex_fixed (tmp_path , setup_path ):
18
22
df = DataFrame (
@@ -61,7 +65,6 @@ def test_complex_table(tmp_path, setup_path):
61
65
tm .assert_frame_equal (df , reread )
62
66
63
67
64
- @pytest .mark .xfail (using_string_dtype (), reason = "TODO(infer_string)" )
65
68
def test_complex_mixed_fixed (tmp_path , setup_path ):
66
69
complex64 = np .array (
67
70
[1.0 + 1.0j , 1.0 + 1.0j , 1.0 + 1.0j , 1.0 + 1.0j ], dtype = np .complex64
@@ -85,7 +88,6 @@ def test_complex_mixed_fixed(tmp_path, setup_path):
85
88
tm .assert_frame_equal (df , reread )
86
89
87
90
88
- @pytest .mark .xfail (using_string_dtype (), reason = "TODO(infer_string)" )
89
91
def test_complex_mixed_table (tmp_path , setup_path ):
90
92
complex64 = np .array (
91
93
[1.0 + 1.0j , 1.0 + 1.0j , 1.0 + 1.0j , 1.0 + 1.0j ], dtype = np .complex64
@@ -140,7 +142,6 @@ def test_complex_across_dimensions(tmp_path, setup_path):
140
142
tm .assert_frame_equal (df , reread )
141
143
142
144
143
- @pytest .mark .xfail (using_string_dtype (), reason = "TODO(infer_string)" )
144
145
def test_complex_indexing_error (setup_path ):
145
146
complex128 = np .array (
146
147
[1.0 + 1.0j , 1.0 + 1.0j , 1.0 + 1.0j , 1.0 + 1.0j ], dtype = np .complex128
0 commit comments