diff options
| author | Henry Nash <henryn@linux.vnet.ibm.com> | 2012-11-08 20:15:07 +0000 |
|---|---|---|
| committer | Henry Nash <henryn@linux.vnet.ibm.com> | 2012-11-09 02:35:11 +0000 |
| commit | 76b7d92dcc189908000f7d70d3f75c5c3aec3e73 (patch) | |
| tree | 159484ea2ae4410577d9ed5a9a8577de64024a5a /run_tests.sh | |
| parent | d471f65231427d54c329697982533e6868b7cdb1 (diff) | |
| download | python-keystoneclient-76b7d92dcc189908000f7d70d3f75c5c3aec3e73.tar.gz | |
Make initial structural changes to keystoneclient in preparation
to moving auth_token here from keystone. No functional change
should occur from this commit (even though it did refresh a newer copy
of openstack.common.setup.py, none of the newer updates are in
functions called from this client)
blueprint authtoken-to-keystoneclient-repo
Change-Id: Ie54feb73e0e34b56400fdaa8a8f876f9284bac27
Diffstat (limited to 'run_tests.sh')
| -rwxr-xr-x | run_tests.sh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/run_tests.sh b/run_tests.sh index d22a745..dff6948 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -92,8 +92,13 @@ 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. + # + # NOTE(henry-nash): Added exlusion of the openstack.common dir (as + # is the case in other projects, since some of the common files + # don't pass pep8. Clearly we should come back a fix this + # ${wrapper} pep8 --repeat --show-pep8 --show-source \ - --ignore=E202,W602 \ + --ignore=E202,W602 --exclude=openstack \ ${srcfiles} } |
