From b06c7e857edbffe21745e0c85b021cc2d7423a7f Mon Sep 17 00:00:00 2001 From: Brandon Logan Date: Fri, 8 Jul 2016 01:30:52 -0500 Subject: [PATCH] Allow tox to be run with python 3 The tox.ini has some unicode characters that cannot be decoded, so just executing tox will immediately cause an error because the tox.ini cannot be parsed. Closes-Bug: #1600068 Change-Id: Ia01ae80d9321584845bb06c3f6673d13027bd2db --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 4c5b5e3f289..def520cd5e8 100644 --- a/tox.ini +++ b/tox.ini @@ -122,7 +122,7 @@ commands = sphinx-build -W -b html doc/source doc/build/html # E126 continuation line over-indented for hanging indent # E128 continuation line under-indented for visual indent # E129 visually indented line with same indent as next logical line -# E265 block comment should start with ‘# ‘ +# E265 block comment should start with '# ' # H404 multi line docstring should start with a summary # H405 multi line docstring summary not separated with an empty line ignore = E125,E126,E128,E129,E265,H404,H405