Skip to content

Commit 03cd904

Browse files
xfail some slow tests
1 parent 653f73a commit 03cd904

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pandas/tests/frame/methods/test_to_csv.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -439,6 +439,7 @@ def test_to_csv_empty(self):
439439
result, expected = self._return_result_expected(df, 1000)
440440
tm.assert_frame_equal(result, expected, check_column_type=False)
441441

442+
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)")
442443
@pytest.mark.slow
443444
def test_to_csv_chunksize(self):
444445
chunksize = 1000
@@ -451,6 +452,7 @@ def test_to_csv_chunksize(self):
451452
result, expected = self._return_result_expected(df, chunksize, rnlvl=2)
452453
tm.assert_frame_equal(result, expected, check_names=False)
453454

455+
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)", strict=False)
454456
@pytest.mark.slow
455457
@pytest.mark.parametrize(
456458
"nrows", [2, 10, 99, 100, 101, 102, 198, 199, 200, 201, 202, 249, 250, 251]

0 commit comments

Comments
 (0)