From 8bfa4e9c21958042171418222d18a2c7f3ec1fd2 Mon Sep 17 00:00:00 2001 From: Bill DeRusha Date: Tue, 8 Sep 2015 19:12:48 -0400 Subject: [PATCH] Add ENABLE_SEARCH_TEAMS flag to tests --- lms/envs/test.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lms/envs/test.py b/lms/envs/test.py index 1e52d4297c..b26c03b4de 100644 --- a/lms/envs/test.py +++ b/lms/envs/test.py @@ -486,6 +486,9 @@ FEATURES['ENABLE_EDXNOTES'] = True # Enable teams feature for tests. FEATURES['ENABLE_TEAMS'] = True +# Enable teams search for tests. +FEATURES['ENABLE_TEAMS_SEARCH'] = True + # Add milestones to Installed apps for testing INSTALLED_APPS += ('milestones', 'openedx.core.djangoapps.call_stack_manager')