sa1 commented on code in PR #2658: URL: https://github.com/apache/iceberg-python/pull/2658#discussion_r2464185392
########## pyproject.toml: ########## @@ -343,6 +347,8 @@ markers = [ # Turns a warning into an error filterwarnings = [ "error", + # Python 3.13 sqlite3 module ResourceWarnings for unclosed database connections + "ignore:unclosed database in <sqlite3.Connection object*:ResourceWarning", Review Comment: I did try to fix the warnings by closing the database, and some of that is in the PR, but they started breaking other legitimate tests so I ignored it like other projects mostly have (mentioned in the issue linked above) -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
