59 lines
2.0 KiB
Ruby
59 lines
2.0 KiB
Ruby
def run_pylint(system, report_dir, flags='')
|
|
apps = Dir["#{system}", "#{system}/djangoapps/*", "#{system}/lib/*"].map do |app|
|
|
File.basename(app)
|
|
end.select do |app|
|
|
app !=~ /.pyc$/
|
|
end.map do |app|
|
|
if app =~ /.py$/
|
|
app.gsub('.py', '')
|
|
else
|
|
app
|
|
end
|
|
end
|
|
|
|
pythonpath_prefix = "PYTHONPATH=#{system}:#{system}/djangoapps:#{system}/lib:common/djangoapps:common/lib"
|
|
sh("#{pythonpath_prefix} pylint #{flags} -f parseable #{apps.join(' ')} | tee #{report_dir}/pylint.report")
|
|
end
|
|
|
|
|
|
[:lms, :cms, :common].each do |system|
|
|
report_dir = report_dir_path(system)
|
|
directory report_dir
|
|
|
|
namespace :pylint do
|
|
namespace system do
|
|
desc "Run pylint checking for #{system} checking for errors only, and aborting if there are any"
|
|
task :errors do
|
|
run_pylint(system, report_dir, '-E')
|
|
end
|
|
end
|
|
|
|
desc "Run pylint on all #{system} code"
|
|
task system => [report_dir, :install_python_prereqs] do
|
|
run_pylint(system, report_dir)
|
|
end
|
|
end
|
|
task :pylint => :"pylint:#{system}"
|
|
|
|
namespace :pep8 do
|
|
desc "Run pep8 on all #{system} code"
|
|
task system => [report_dir, :install_python_prereqs] do
|
|
sh("pep8 #{system} | tee #{report_dir}/pep8.report")
|
|
end
|
|
end
|
|
task :pep8 => :"pep8:#{system}"
|
|
end
|
|
|
|
dquality_dir = File.join(REPORT_DIR, "diff_quality")
|
|
directory dquality_dir
|
|
|
|
desc "Build the html diff quality reports, and print the reports to the console."
|
|
task :quality => dquality_dir do
|
|
# Generage diff-quality html report for pep8, and print to console
|
|
sh("diff-quality --violations=pep8 --html-report #{dquality_dir}/diff_quality_pep8.html")
|
|
sh("diff-quality --violations=pep8")
|
|
|
|
# Generage diff-quality html report for pylint, and print to console
|
|
sh("diff-quality --violations=pylint --html-report #{dquality_dir}/diff_quality_pylint.html")
|
|
sh("diff-quality --violations=pylint")
|
|
end |