From f798e89cf403dcd51dfac70511469e7f07ce1b32 Mon Sep 17 00:00:00 2001 From: Elliott Sales de Andrade Date: Feb 13 2020 08:42:46 +0000 Subject: Remove last vestiges of sqlalchemy. --- diff --git a/mdapi/default_config.py b/mdapi/default_config.py index 2757562..d9f4383 100644 --- a/mdapi/default_config.py +++ b/mdapi/default_config.py @@ -48,11 +48,4 @@ LOGGING = { 'level': 'INFO', 'handlers': ['console'], }, - 'loggers': { - 'sqlalchemy': { - 'handlers': ['console'], - 'level': 'WARN', - 'propagate': False - } - } } diff --git a/tests/test_mdapi_data.py b/tests/test_mdapi_data.py index c9fc295..544fef9 100644 --- a/tests/test_mdapi_data.py +++ b/tests/test_mdapi_data.py @@ -35,7 +35,6 @@ import tempfile import mock import pytest from aiohttp import web -from sqlalchemy.exc import SQLAlchemyError sys.path.insert(0, os.path.join(os.path.dirname( os.path.abspath(__file__)), '..'))