summaryrefslogtreecommitdiff
path: root/run_tests.sh
diff options
context:
space:
mode:
authorDean Troyer <dtroyer@gmail.com>2013-03-21 12:21:55 -0500
committerDean Troyer <dtroyer@gmail.com>2013-03-21 21:51:08 -0500
commit73fb88e9317f5f2e5270aca4976ffecd06621b0c (patch)
tree13904dcddccc5a026e4c5ac1a3f02c0f7c45acab /run_tests.sh
parentb175184f239d3933435045505750c0fa1cd8cc0c (diff)
downloadpython-openstackclient-73fb88e9317f5f2e5270aca4976ffecd06621b0c.tar.gz
Make entry point strings readable
PEP8 E126 wants continued strings to line up vertically, totally destroying the readability and visual indication of the beginning of a string in a list * Ignore PEP8 E126 in order to indent the entry point strings in a readable manner. * Sort the enrty point command strings by object then verb. * Bring other ignores from run_tests.sh to tox.ini Change-Id: I2593de7d6c058322101bc68636317cdba29fe664
Diffstat (limited to 'run_tests.sh')
-rwxr-xr-xrun_tests.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/run_tests.sh b/run_tests.sh
index 8a4ae624..4992dee8 100755
--- a/run_tests.sh
+++ b/run_tests.sh
@@ -118,7 +118,7 @@ function run_pep8 {
# other than what the PEP8 tool claims. It is deprecated in Python 3, so,
# perhaps the mistake was thinking that the deprecation applied to Python 2
# as well.
- pep8_opts="--ignore=E202,W602 --repeat"
+ pep8_opts="--ignore=E126,E202,W602 --repeat"
${wrapper} pep8 ${pep8_opts} ${srcfiles}
}