File tree 2 files changed +6
-2
lines changed
pandas/tests/io/parser/common
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 73
73
shell : bash
74
74
run : |
75
75
ci/run_tests.sh
76
- # GH 41935
77
- continue-on-error : true
78
76
79
77
- name : Publish test results
80
78
uses : actions/upload-artifact@master
Original file line number Diff line number Diff line change 12
12
import numpy as np
13
13
import pytest
14
14
15
+ from pandas .compat import PY310
15
16
from pandas .errors import (
16
17
EmptyDataError ,
17
18
ParserError ,
@@ -674,6 +675,11 @@ def test_read_table_equivalency_to_read_csv(all_parsers):
674
675
tm .assert_frame_equal (result , expected )
675
676
676
677
678
+ @pytest .mark .skipif (
679
+ PY310 ,
680
+ reason = "GH41935 This test is leaking only on Python 3.10,"
681
+ "causing other tests to fail with a cryptic error." ,
682
+ )
677
683
@pytest .mark .parametrize ("read_func" , ["read_csv" , "read_table" ])
678
684
def test_read_csv_and_table_sys_setprofile (all_parsers , read_func ):
679
685
# GH#41069
You can’t perform that action at this time.
0 commit comments