From 6caff90c0a93927f702931b8f1ecc429d21e7487 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Denis=20Nut=CC=A6iu?= Date: Sat, 22 Apr 2017 01:40:34 +0300 Subject: [PATCH] Removing cache from testing config --- src/config.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/config.py b/src/config.py index 9bea94a..1004f2a 100644 --- a/src/config.py +++ b/src/config.py @@ -77,8 +77,7 @@ class ProductionConfig(Config): class TestingConfig(Config): MAX_RESULTS_PER_PAGE = 1 - CACHE_TYPE = "filesystem" - CACHE_DIR = "/tmp" + CACHE_TYPE = "null" SQLALCHEMY_DATABASE_URI = 'sqlite:///' + os.path.join(basedir, 'test_database.sqlite') @staticmethod