diff options
author | James E. Blair <jeblair@openstack.org> | 2013-05-08 13:32:10 -0700 |
---|---|---|
committer | Jenkins <jenkins@review.openstack.org> | 2013-05-08 21:39:40 +0000 |
commit | 88dd5109c8035869e7f449a625d27fae0d51e844 (patch) | |
tree | aa64587bdb56153dc637409cdba5324da4fcf828 /tox.ini | |
parent | 51fd119902f7303b34853054b3ab4fef2b1a3a33 (diff) | |
download | zuul-88dd5109c8035869e7f449a625d27fae0d51e844.tar.gz |
Ignore pep8 E123.
From the pep8 spec:
The closing brace/bracket/parenthesis on multi-line constructs
may either line up under the last item of the list, as in:
...
or it may be lined up under the first character of the line that
starts the multi-line construct, as in:
...
Bizzarly, the pep8 tool ignores the first option.
Change-Id: Ic0e8f8ad964881276d213ffd50deb75a537c250b
Reviewed-on: https://review.openstack.org/28609
Reviewed-by: Clark Boylan <clark.boylan@gmail.com>
Approved: James E. Blair <corvus@inaugust.com>
Tested-by: Jenkins
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -14,7 +14,7 @@ downloadcache = ~/cache/pip [testenv:pep8] deps = pep8==1.3.3 -commands = pep8 --ignore=E125,E128 --repeat --show-source --exclude=.venv,.tox,dist,doc,build . +commands = pep8 --ignore=E123,E125,E128 --repeat --show-source --exclude=.venv,.tox,dist,doc,build . [testenv:cover] setenv = NOSE_WITH_COVERAGE=1 |