Merge "Ignore sqla-migrate inspect.getargspec deprecation warnings on py36"

This commit is contained in:
Zuul 2019-09-25 23:10:56 +00:00 committed by Gerrit Code Review
commit cbed49544d
1 changed files with 1 additions and 1 deletions

View File

@ -876,7 +876,7 @@ class WarningsFixture(fixtures.Fixture):
# TODO(mriedem): Change (or remove) this DeprecationWarning once
# https://bugs.launchpad.net/sqlalchemy-migrate/+bug/1814288 is fixed.
warnings.filterwarnings(
'ignore', message='inspect.getargspec() is deprecated',
'ignore', message=r'inspect.getargspec\(\) is deprecated',
category=DeprecationWarning,
module='migrate.versioning.script.py')