Skip to content

Commit 427fc57

Browse files
authored
CI: suppress warnings (#41003)
1 parent 546167d commit 427fc57

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

pandas/tests/io/pytables/test_categorical.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,14 @@
1717
ensure_clean_store,
1818
)
1919

20-
pytestmark = [pytest.mark.single, td.skip_array_manager_not_yet_implemented]
20+
pytestmark = [
21+
pytest.mark.single,
22+
td.skip_array_manager_not_yet_implemented,
23+
# pytables https://github.com/PyTables/PyTables/issues/822
24+
pytest.mark.filterwarnings(
25+
"ignore:a closed node found in the registry:UserWarning"
26+
),
27+
]
2128

2229

2330
def test_categorical(setup_path):

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@ xfail_strict = True
137137
filterwarnings =
138138
error:Sparse:FutureWarning
139139
error:The SparseArray:FutureWarning
140+
ignore:unclosed transport <asyncio.sslproto:ResourceWarning
140141
junit_family = xunit2
141142

142143
[codespell]

0 commit comments

Comments
 (0)