jorisvandenbossche commented on a change in pull request #8255:
URL: https://github.com/apache/arrow/pull/8255#discussion_r500891790
##########
File path: python/pyarrow/tests/test_serialization.py
##########
@@ -52,6 +52,9 @@
sparse = None
+pytestmark = pytest.mark.filterwarnings("ignore:'pyarrow:DeprecationWarning")
Review comment:
Indeed, this is a way to suppress (ignore) all DeprecationWarnings that
start with "pyarrow" in this test module. That's easier than catching all
individual warnings, since this full file is about serialization and thus
deprecated.
(and therefore I added a separate file to explicitly test the warnings are
raised)
Will add a short comment about it
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]