Ignore long lines in pep8

This commit is contained in:
Calen Pennington
2012-05-17 10:12:10 -04:00
parent 4a9a28c76b
commit 2efc013316

View File

@@ -34,7 +34,7 @@ task :default => [:pep8, :pylint, :test]
directory REPORT_DIR
task :pep8 => REPORT_DIR do
sh("pep8 djangoapps | tee #{REPORT_DIR}/pep8.report")
sh("pep8 --ignore=E501 djangoapps | tee #{REPORT_DIR}/pep8.report")
end
task :pylint => REPORT_DIR do