diff --git a/tests/integration_tests/superset_test_config.py b/tests/integration_tests/superset_test_config.py index 2907f4ceb8b95..d426e6aa74cf4 100644 --- a/tests/integration_tests/superset_test_config.py +++ b/tests/integration_tests/superset_test_config.py @@ -15,6 +15,7 @@ # specific language governing permissions and limitations # under the License. # type: ignore +import logging import math from copy import copy from datetime import timedelta @@ -24,6 +25,12 @@ CustomPrestoTemplateProcessor, ) +logging.getLogger("flask_appbuilder.baseviews").setLevel(logging.WARNING) +logging.getLogger("flask_appbuilder.base").setLevel(logging.WARNING) +logging.getLogger("flask_appbuilder.api").setLevel(logging.WARNING) +logging.getLogger("flask_appbuilder.security.sqla.manager").setLevel(logging.WARNING) +logging.getLogger("sqlalchemy.engine.Engine").setLevel(logging.WARNING) + AUTH_USER_REGISTRATION_ROLE = "alpha" SQLALCHEMY_DATABASE_URI = "sqlite:///" + os.path.join( DATA_DIR, "unittests.integration_tests.db"