Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion cms/envs/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -332,14 +332,17 @@
# Monitor the status of services
'service_status',

# Testing
'django_nose',

# For CMS
'contentstore',
'auth',
'course_creators',
'student', # misleading name due to sharing with lms
'course_groups', # not used in cms (yet), but tests run

# tracking
# Tracking
'track',

# For asset pipelining
Expand Down
1 change: 0 additions & 1 deletion cms/envs/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
from warnings import filterwarnings

# Nose Test Runner
INSTALLED_APPS += ('django_nose',)
TEST_RUNNER = 'django_nose.NoseTestSuiteRunner'

TEST_ROOT = path('test_root')
Expand Down
2 changes: 1 addition & 1 deletion lms/envs/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -758,6 +758,7 @@

# For testing
'django.contrib.admin', # only used in DEBUG mode
'django_nose',
'debug',

# Discussion forums
Expand Down Expand Up @@ -816,4 +817,3 @@ def enable_theme(theme_name):
# avoid collisions with default edX static files
STATICFILES_DIRS.append((u'themes/%s' % theme_name,
theme_root / 'static'))

2 changes: 0 additions & 2 deletions lms/envs/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,6 @@
SOUTH_TESTS_MIGRATE = False # To disable migrations and use syncdb instead

# Nose Test Runner
INSTALLED_APPS += ('django_nose',)

TEST_RUNNER = 'django_nose.NoseTestSuiteRunner'

# Local Directories
Expand Down