1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
Description: Set deprecation warnings to ignore
Otherwise, Keystone FTBFS in Unstable.
Author: Thomas Goirand <zigo@debian.org>
Forwarded: no
Last-Update: 2025-03-13
--- keystone-24.0.0.orig/keystone/tests/unit/ksfixtures/warnings.py
+++ keystone-24.0.0/keystone/tests/unit/ksfixtures/warnings.py
@@ -30,7 +30,7 @@
warnings.simplefilter('once', DeprecationWarning)
warnings.filterwarnings(
- 'error', module='keystone', category=DeprecationWarning
+ 'ignore', module='keystone', category=DeprecationWarning
)
warnings.filterwarnings(
|