summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2015-01-19 10:16:07 -0500
committerNed Batchelder <ned@nedbatchelder.com>2015-01-19 10:16:07 -0500
commitcf5a9f0e6001cae65e57d6592cced37a460ea642 (patch)
tree422b89ad604dbeaece0f0c2bb9c6e688e5841106 /tox.ini
parent9304efd307f88e358629059d939c214c1ec720fa (diff)
downloadpython-coveragepy-git-cf5a9f0e6001cae65e57d6592cced37a460ea642.tar.gz
More pep8 compliance
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini7
1 files changed, 7 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini
index e51f803a..0a76c318 100644
--- a/tox.ini
+++ b/tox.ini
@@ -40,3 +40,10 @@ basepython = pypy2.4
[testenv:pypy3_24]
basepython = pypy3-2.4
+
+
+# Yes, pep8 will read its settings from tox.ini!
+[pep8]
+# E265: block comment should start with '# '
+# The rest are the default ignored warnings.
+ignore = E265,E123,E133,E226,E241,E242