From a1c375b499995d6af6da3666487d687c8bd1a04c Mon Sep 17 00:00:00 2001 From: Calen Pennington Date: Wed, 13 Mar 2013 13:30:49 -0400 Subject: [PATCH] Run pylint on lms/*.py and cms/*.py --- rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rakefile b/rakefile index 21c39cf73e..6d34684791 100644 --- a/rakefile +++ b/rakefile @@ -140,7 +140,7 @@ end desc "Run pylint on all #{system} code" task "pylint_#{system}" => report_dir do - Dir["#{system}/djangoapps/*", "#{system}/lib/*"].each do |app| + Dir["#{system}/*.py", "#{system}/djangoapps/*", "#{system}/lib/*"].each do |app| pythonpath_prefix = "PYTHONPATH=#{system}:#{system}/djangoapps:#{system}/lib:common/djangoapps:common/lib" app = File.basename(app) if app =~ /.py$/