From a6e34618adb4aad9ce5ae1f9742ed3d57b428108 Mon Sep 17 00:00:00 2001 From: Thomas Li <47963215+lithomas1@users.noreply.github.com> Date: Sat, 28 May 2022 15:31:24 -0700 Subject: [PATCH] Backport PR #47159: TST: Re-enable test after Cython upgrade --- pandas/tests/io/parser/common/test_common_basic.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/pandas/tests/io/parser/common/test_common_basic.py b/pandas/tests/io/parser/common/test_common_basic.py index bde69e365cfd1..69b087eff8a20 100644 --- a/pandas/tests/io/parser/common/test_common_basic.py +++ b/pandas/tests/io/parser/common/test_common_basic.py @@ -12,7 +12,6 @@ import numpy as np import pytest -from pandas.compat import PY310 from pandas.errors import ( EmptyDataError, ParserError, @@ -676,11 +675,6 @@ def test_read_table_equivalency_to_read_csv(all_parsers): tm.assert_frame_equal(result, expected) -@pytest.mark.skipif( - PY310, - reason="GH41935 This test is leaking only on Python 3.10," - "causing other tests to fail with a cryptic error.", -) @pytest.mark.parametrize("read_func", ["read_csv", "read_table"]) def test_read_csv_and_table_sys_setprofile(all_parsers, read_func): # GH#41069