Disable compressor during unittests for now

This commit is contained in:
Yohan Boniface 2018-05-19 16:28:56 +02:00
parent 4e5d9a6319
commit 8fd541955e
2 changed files with 2 additions and 1 deletions

View file

@ -1,2 +1,2 @@
[pytest] [pytest]
DJANGO_SETTINGS_MODULE=umap.settings DJANGO_SETTINGS_MODULE=umap.tests.settings

View file

@ -1,3 +1,4 @@
from umap.settings.base import * # pylint: disable=W0614,W0401 from umap.settings.base import * # pylint: disable=W0614,W0401
SECRET_KEY = 'justfortests' SECRET_KEY = 'justfortests'
COMPRESS_ENABLED = False