myth / pepper8

Transform pep8 or flake8 output to HTML
MIT License
13 stars 3 forks source link

pepper8 does not output HTML errors with the flake8-commas plugin #3

Closed w0rp closed 8 years ago

w0rp commented 8 years ago

I have found a bug in the latest version of pepper8

  1. Install flake8-commas via pip install.
  2. Enable the errors by including C812 in a setup.cfg file, or with --select.
  3. Run flake8 to get text output.
  4. Run pepper8 on the output of flake8.

You will be able to see the standard flake8 warnings and errors in the HTML output, but not the output resulting from plugins, which are present in the text output.

myth commented 8 years ago

Hi, sorry for the long response time. It should work for all error codes now!

w0rp commented 8 years ago

Cool, thanks a lot for writing this tool! I personally use it to get a quick overview of any warnings and errors which will be reported in CI, without having to wait for CI.

kevinsl commented 7 years ago

Hello, I'm running into a similar issue when using the radon plugin. By adding --radon-max-cc=1 to my flake8 command I get R701 errors in the output. For example:

./settings.py:28:5: R701: 'filter' is too complex (2)

But they are not included in the pepper8 output.