We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 546167d commit 427fc57Copy full SHA for 427fc57
pandas/tests/io/pytables/test_categorical.py
@@ -17,7 +17,14 @@
17
ensure_clean_store,
18
)
19
20
-pytestmark = [pytest.mark.single, td.skip_array_manager_not_yet_implemented]
+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
+]
28
29
30
def test_categorical(setup_path):
setup.cfg
@@ -137,6 +137,7 @@ xfail_strict = True
137
filterwarnings =
138
error:Sparse:FutureWarning
139
error:The SparseArray:FutureWarning
140
+ ignore:unclosed transport <asyncio.sslproto:ResourceWarning
141
junit_family = xunit2
142
143
[codespell]
0 commit comments