This is an automated email from the ASF dual-hosted git repository. brondsem pushed a commit to branch db/8589 in repository https://gitbox.apache.org/repos/asf/allura.git
commit 6672b3ef3404ed4b7e32a37a8c6d3fdaaca2db0f Author: Dave Brondsema <[email protected]> AuthorDate: Fri Nov 21 10:28:55 2025 -0500 [#8589] ignore some warnings starting on 3.14 --- pytest.ini | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pytest.ini b/pytest.ini index 18dfbf9c0..2e92daead 100644 --- a/pytest.ini +++ b/pytest.ini @@ -45,6 +45,10 @@ filterwarnings = ignore:'cgi' is deprecated:DeprecationWarning:webob.compat ignore:'cgi' is deprecated:DeprecationWarning:formencode.validators + # py3.14 + ignore:datetime\.datetime\.utcnow\(\) is deprecated and scheduled for removal.*:DeprecationWarning + ignore:datetime\.datetime\.utcfromtimestamp\(\) is deprecated and scheduled for removal.*:DeprecationWarning + # https://github.com/pallets/jinja/issues/1156 error:invalid escape sequence::jinja2.lexer
