Remove redundant db ignore warnings

Change-Id: Ie0d316f7693154232d6a97403a8b93fe6e415f40
This commit is contained in:
Andriy Kurilin 2024-04-28 23:34:10 -04:00 committed by Andrey Kurilin
parent cd78ec4b1b
commit 943f8a42b0
1 changed files with 1 additions and 4 deletions

View File

@ -11,6 +11,7 @@ setenv = VIRTUAL_ENV={envdir}
LC_ALL=C
PYTHONHASHSEED=0
TOX_ENV_NAME={envname}
sa14: SQLALCHEMY_SILENCE_UBER_WARNING=1
allowlist_externals = find
rm
make
@ -139,10 +140,6 @@ commands = \
[pytest]
filterwarnings =
error
# Introduced with oslo.db-12.1.0
ignore:.*Support for the MySQL NDB Cluster storage engine has been deprecated and will be removed in a future release.:DeprecationWarning:
# Introduced with SQLAlchemy-1.4.46, can be removed when rally supports SQLAlchemy>=2.0.0
ignore:.*Set environment variable SQLALCHEMY_SILENCE_UBER_WARNING=1 to silence this message.*
# we do not use anything inner from OptionParser, so we do not care about it's parent
ignore:The frontend.OptionParser class will be replaced by a subclass of argparse.ArgumentParser in Docutils 0.21 or later.:DeprecationWarning:
# we do not use Option directly, it is initialized by OptionParser by itself.