Commit fcf77c5c by Calen Pennington

Run pylint in fewer larger batches

parent 4615f0d8
...@@ -141,16 +141,20 @@ end ...@@ -141,16 +141,20 @@ end
desc "Run pylint on all #{system} code" desc "Run pylint on all #{system} code"
task "pylint_#{system}" => report_dir do task "pylint_#{system}" => report_dir do
Dir["#{system}/*.py", "#{system}/djangoapps/*", "#{system}/lib/*"].each do |app| apps = Dir["#{system}/*.py", "#{system}/djangoapps/*", "#{system}/lib/*"].map do |app|
pythonpath_prefix = "PYTHONPATH=#{system}:#{system}/djangoapps:#{system}/lib:common/djangoapps:common/lib" File.basename(app)
app = File.basename(app) end.select do |app|
app !=~ /.pyc$/
end.map do |app|
if app =~ /.py$/ if app =~ /.py$/
app = app.gsub('.py', '') app.gsub('.py', '')
elsif app =~ /.pyc$/ else
next app
end end
sh("#{pythonpath_prefix} pylint --rcfile=.pylintrc -f parseable #{app} | tee #{report_dir}/#{app}.pylint.report")
end end
pythonpath_prefix = "PYTHONPATH=#{system}:#{system}/djangoapps:#{system}/lib:common/djangoapps:common/lib"
sh("#{pythonpath_prefix} pylint --rcfile=.pylintrc -f parseable #{apps.join(' ')} | tee #{report_dir}/pylint.report")
end end
task :pylint => "pylint_#{system}" task :pylint => "pylint_#{system}"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment