File: ignore_deprecation_warnings.patch

package info (click to toggle)
metakernel 0.30.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,368 kB
  • sloc: python: 5,097; makefile: 179; sh: 18
file content (11 lines) | stat: -rw-r--r-- 507 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -57,6 +57,8 @@ filterwarnings= [
   "error",
   "ignore:unclosed event loop:ResourceWarning",
   "ignore:There is no current event loop:DeprecationWarning",
+  # When building/testing packages for Debian, do not fail on Deprecation warnings
+  "ignore::DeprecationWarning",
   # When we run ipcluster and then run the tests we get this warning
   "ignore:Widget.* is deprecated:DeprecationWarning",
   "module:datetime.datetime.utc:DeprecationWarning:dateutil",