There was an error while loading. Please reload this page.
1 parent b6ae5bb commit 58091abCopy full SHA for 58091ab
1 file changed
pyproject.toml
@@ -15,3 +15,14 @@ exclude = '''
15
)/
16
)
17
'''
18
+
19
+# Configure pytest.
20
+[tool.pytest.ini_options]
21
+filterwarnings = [
22
+ # Ignore deprecation warnings from webob, esmpy and pkg_resources:
23
+ "ignore:'cgi' is deprecated and slated for removal in Python 3.13:DeprecationWarning",
24
+ "ignore:Implicit None on return values is deprecated:DeprecationWarning",
25
+ "ignore:Deprecated call to `pkg_resources.declare_namespace:DeprecationWarning",
26
+ # Ignore user warnings from pybtex:
27
+ "ignore:pkg_resources is deprecated as an API:UserWarning",
28
+]
0 commit comments