Disable compressor during unittests for now
This commit is contained in:
parent
4e5d9a6319
commit
8fd541955e
2 changed files with 2 additions and 1 deletions
|
@ -1,2 +1,2 @@
|
||||||
[pytest]
|
[pytest]
|
||||||
DJANGO_SETTINGS_MODULE=umap.settings
|
DJANGO_SETTINGS_MODULE=umap.tests.settings
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue