diff --git a/tests/conftest.py b/tests/conftest.py index 3736bc6..2d32741 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -10,15 +10,10 @@ from ash import app -class Config: - TESTING = True - T_MEDIA_FROM = 'direct' - - @pytest.fixture def client(es_host, es_index): - app.config.from_object(Config) app.config.update({ + 'TESTING': True, 'T_ES_HOST': es_host, 'T_ES_INDEX': es_index, })