Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Disable flake8-pytest and flake8-todo.
It's strange. Without this, when I run flake8 I get this: $ .tox/lint-py27/bin/flake8 --doctests src tests setup.py src/plone/testing/layer.py:127:13: W503 line break before binary operator src/plone/testing/layer.py:128:13: W503 line break before binary operator setup.py:51:9: W503 line break before binary operator We should ignore W503, so I pass an extra option, and then I get different errors: $ .tox/lint-py27/bin/flake8 --doctests --ignore=W503 src tests setup.py src/plone/testing/zope.py:124:19: T000 Todo note found. src/plone/testing/tests.py:95:9: T003 use of Django-style assert statement found (instead of regular assert): assertIsNotNone
- Loading branch information
6f92e57
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mauritsvanrees Jenkins CI reporting about code analysis
See the full report here: https://jenkins.plone.org/job/package-plone.testing/150/violations
Follow these instructions to reproduce it locally.