From 340cc8aa71d3bd8001528b752ce7c185e3c689f0 Mon Sep 17 00:00:00 2001 From: Thomas Li <47963215+lithomas1@users.noreply.github.com> Date: Sat, 28 May 2022 10:03:29 -0700 Subject: [PATCH] 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 0ac0fe23bbbb7..115a2976ce618 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