summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--oslo_db/tests/fixtures.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/oslo_db/tests/fixtures.py b/oslo_db/tests/fixtures.py
index 4cc596f..62a88fb 100644
--- a/oslo_db/tests/fixtures.py
+++ b/oslo_db/tests/fixtures.py
@@ -26,6 +26,13 @@ class WarningsFixture(fixtures.Fixture):
warnings.simplefilter('once', DeprecationWarning)
+ # Except things we've deprecated but are still testing until removal
+
+ warnings.filterwarnings(
+ 'ignore',
+ category=DeprecationWarning,
+ module='oslo_db')
+
# Enable generic warnings to ensure we're not doing anything odd
warnings.filterwarnings(