From 689c761bbc4897518a965b4369470315c8b31494 Mon Sep 17 00:00:00 2001 From: David Ormsbee Date: Fri, 10 Aug 2012 17:07:03 -0400 Subject: [PATCH] Remove comment in Rakefile I was just testing. --- rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rakefile b/rakefile index 2aeb05dc1e..c62c87701e 100644 --- a/rakefile +++ b/rakefile @@ -88,7 +88,7 @@ $failed_tests = 0 def run_tests(system, report_dir, stop_on_failure=true) ENV['NOSE_XUNIT_FILE'] = File.join(report_dir, "nosetests.xml") ENV['NOSE_COVER_HTML_DIR'] = File.join(report_dir, "cover") - dirs = Dir["common/djangoapps/*"] # + Dir["#{system}/djangoapps/*"] + dirs = Dir["common/djangoapps/*"] + Dir["#{system}/djangoapps/*"] sh(django_admin(system, :test, 'test', *dirs.each)) do |ok, res| if !ok and stop_on_failure abort "Test failed!"