File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
pandas/tests/io/parser/common Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 7373 shell : bash
7474 run : |
7575 ci/run_tests.sh
76- # GH 41935
77- continue-on-error : true
7876
7977 - name : Publish test results
8078 uses : actions/upload-artifact@master
Original file line number Diff line number Diff line change 1212import numpy as np
1313import pytest
1414
15+ from pandas .compat import PY310
1516from pandas .errors import (
1617 EmptyDataError ,
1718 ParserError ,
@@ -633,6 +634,11 @@ def test_read_table_equivalency_to_read_csv(all_parsers):
633634 tm .assert_frame_equal (result , expected )
634635
635636
637+ @pytest .mark .skipif (
638+ PY310 ,
639+ reason = "GH41935 This test is leaking only on Python 3.10,"
640+ "causing other tests to fail with a cryptic error." ,
641+ )
636642@pytest .mark .parametrize ("read_func" , ["read_csv" , "read_table" ])
637643def test_read_csv_and_table_sys_setprofile (all_parsers , read_func ):
638644 # GH#41069
You can’t perform that action at this time.
0 commit comments