Commit 550ffd5f by Calen Pennington

Ignore long lines in pep8

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