summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2016-12-10 14:22:17 +0900
committerTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2016-12-10 15:05:06 +0900
commite74582e059f8242c2a8c63a3b694ec61e5accb2e (patch)
tree193bfc3a22fd804a11b26e7f9385b30833b40bb3 /setup.cfg
parentf77a01435e525a169e2e141d8ae7fd7bd82d1a5a (diff)
downloadbuildstream-e74582e059f8242c2a8c63a3b694ec61e5accb2e.tar.gz
setup.cfg: Ignore pep8 error 129
This is just an annoyance, as mentioned here: https://github.com/PyCQA/pycodestyle/issues/386 This error was explicitly split out from error 125 so that it could safely be ignored.
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg1
1 files changed, 1 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
index cef5bdf05..6a3e0679e 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -4,3 +4,4 @@ test=pytest
[tool:pytest]
addopts = --verbose --basetemp ./tmp --pep8
python_files = tests/*/*.py
+pep8ignore = E129