From b659846e1f88b5477bdffe5625f7868f6bea10bd Mon Sep 17 00:00:00 2001 From: Calen Pennington Date: Tue, 31 Jul 2012 12:46:47 -0400 Subject: [PATCH] Add askbot to lms staticfiles_dirs in test --- lms/envs/test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lms/envs/test.py b/lms/envs/test.py index e6fedcb373..7d38e1fbb9 100644 --- a/lms/envs/test.py +++ b/lms/envs/test.py @@ -54,6 +54,7 @@ GITHUB_REPO_ROOT = ENV_ROOT / "data" STATICFILES_DIRS = [ COMMON_ROOT / "static", PROJECT_ROOT / "static", + ASKBOT_ROOT / "askbot" / "skins", ] STATICFILES_DIRS += [ (course_dir, COMMON_TEST_DATA_ROOT / course_dir)