File tree 2 files changed +3
-1
lines changed 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -374,7 +374,6 @@ def USE_PROMOS(self): # noqa
374
374
DOCKER_SOCKET = 'unix:///var/run/docker.sock'
375
375
# This settings has been deprecated in favor of DOCKER_IMAGE_SETTINGS
376
376
DOCKER_BUILD_IMAGES = None
377
- DOCKER_LIMITS = {'memory' : '200m' , 'time' : 600 }
378
377
379
378
# User used to create the container.
380
379
# In production we use the same user than the one defined by the
Original file line number Diff line number Diff line change @@ -19,6 +19,9 @@ class CommunityTestSettings(CommunityDevSettings):
19
19
ELASTICSEARCH_DSL_AUTOSYNC = False
20
20
ELASTICSEARCH_DSL_AUTO_REFRESH = True
21
21
22
+ # Skip automatic detection of Docker limits for testing
23
+ DOCKER_LIMITS = {'memory' : '200m' , 'time' : 600 }
24
+
22
25
@property
23
26
def ES_INDEXES (self ): # noqa - avoid pep8 N802
24
27
es_indexes = super (CommunityTestSettings , self ).ES_INDEXES
You can’t perform that action at this time.
0 commit comments