We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 578e918 commit 2e6bd77Copy full SHA for 2e6bd77
pandas/tests/io/parser/common/test_common_basic.py
@@ -12,7 +12,6 @@
12
import numpy as np
13
import pytest
14
15
-from pandas.compat import PY310
16
from pandas.errors import (
17
EmptyDataError,
18
ParserError,
@@ -676,11 +675,6 @@ def test_read_table_equivalency_to_read_csv(all_parsers):
676
675
tm.assert_frame_equal(result, expected)
677
678
679
-@pytest.mark.skipif(
680
- PY310,
681
- reason="GH41935 This test is leaking only on Python 3.10,"
682
- "causing other tests to fail with a cryptic error.",
683
-)
684
@pytest.mark.parametrize("read_func", ["read_csv", "read_table"])
685
def test_read_csv_and_table_sys_setprofile(all_parsers, read_func):
686
# GH#41069
0 commit comments