From 1371fe030897b938e6a975753421f38cccdcc2fb Mon Sep 17 00:00:00 2001 From: Calen Pennington Date: Wed, 24 Apr 2013 15:30:16 -0400 Subject: [PATCH] Make sure to run :predjango before gather_assets so that the xmodule_assets command is set up --- rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rakefile b/rakefile index 0e12f2e3db..1f60a18486 100644 --- a/rakefile +++ b/rakefile @@ -230,7 +230,7 @@ end # Per System tasks desc "Run all django tests on our djangoapps for the #{system}" - task "test_#{system}", [:stop_on_failure] => ["clean_test_files", "#{system}:gather_assets:test", "fasttest_#{system}"] + task "test_#{system}", [:stop_on_failure] => ["clean_test_files", :predjango, "#{system}:gather_assets:test", "fasttest_#{system}"] # Have a way to run the tests without running collectstatic -- useful when debugging without # messing with static files.