summaryrefslogtreecommitdiff
path: root/oslo_db/tests/fixtures.py
diff options
context:
space:
mode:
Diffstat (limited to 'oslo_db/tests/fixtures.py')
-rw-r--r--oslo_db/tests/fixtures.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/oslo_db/tests/fixtures.py b/oslo_db/tests/fixtures.py
index 93cdcb6..4cc596f 100644
--- a/oslo_db/tests/fixtures.py
+++ b/oslo_db/tests/fixtures.py
@@ -24,11 +24,12 @@ class WarningsFixture(fixtures.Fixture):
self._original_warning_filters = warnings.filters[:]
- # Make deprecation warnings only happen once to avoid spamming
warnings.simplefilter('once', DeprecationWarning)
+ # Enable generic warnings to ensure we're not doing anything odd
+
warnings.filterwarnings(
- 'error', message='Evaluating non-mapped column expression',
+ 'error',
category=sqla_exc.SAWarning)
# Enable deprecation warnings to capture upcoming SQLAlchemy changes