Skip to content

Commit

Permalink
fix(behave): Add cache_type to config
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkLark86 committed Sep 27, 2023
1 parent 8a408ec commit a1657a0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions server/features/environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ def before_all(context):
'INSTALLED_APPS': [],
'ELASTICSEARCH_FORCE_REFRESH': True,
'MGMT_API_ENABLED': True,
'CACHE_TYPE': "null",
}
setup_before_all(context, config, app_factory=get_app)

Expand All @@ -33,6 +34,7 @@ def before_scenario(context, scenario):
'ELASTICSEARCH_FORCE_REFRESH': True,
'MGMT_API_ENABLED': True,
'AUTH_SERVER_SHARED_SECRET': 'test-secret',
'CACHE_TYPE': "null",
}

setup_before_scenario(context, scenario, config, app_factory=get_app)
Expand Down

0 comments on commit a1657a0

Please sign in to comment.