Include extras/ dir in flake8 source code check

Moving forward all python scripts in extras/ are to
be checked for pep8 compliancy.

Change-Id: I4f20c1c97590049ba59fd432cbabba89df101e81
Signed-off-by: Prashanth Pai <ppai@redhat.com>
Reviewed-on: http://review.gluster.org/5714
Reviewed-by: Peter Portante <pportant@redhat.com>
Reviewed-by: Luis Pabon <lpabon@redhat.com>
Tested-by: Luis Pabon <lpabon@redhat.com>
This commit is contained in:
Prashanth Pai 2013-08-28 16:12:00 +05:30 committed by Luis Pabon
parent 2b083997a3
commit 53bb81c585
2 changed files with 2 additions and 4 deletions

View File

@ -16,7 +16,6 @@
# limitations under the License. # limitations under the License.
import os
from optparse import OptionParser from optparse import OptionParser
if __name__ == '__main__': if __name__ == '__main__':
@ -25,14 +24,13 @@ if __name__ == '__main__':
from gluster.swift.common.Glusterfs import get_mnt_point, unmount from gluster.swift.common.Glusterfs import get_mnt_point, unmount
except ImportError: except ImportError:
import sys import sys
sys.exit("Openstack Swift does not appear to be installed properly"); sys.exit("Openstack Swift does not appear to be installed properly")
op = OptionParser(usage="%prog [options...]") op = OptionParser(usage="%prog [options...]")
op.add_option('--volname', dest='vol', type=str) op.add_option('--volname', dest='vol', type=str)
op.add_option('--last', dest='last', type=str) op.add_option('--last', dest='last', type=str)
(opts, args) = op.parse_args() (opts, args) = op.parse_args()
mnt_point = get_mnt_point(opts.vol) mnt_point = get_mnt_point(opts.vol)
if mnt_point: if mnt_point:
unmount(mnt_point) unmount(mnt_point)

View File

@ -21,7 +21,7 @@ downloadcache = ~/cache/pip
[testenv:pep8] [testenv:pep8]
changedir = {toxinidir} changedir = {toxinidir}
commands = commands =
flake8 gluster test flake8 gluster test extras
[testenv:cover] [testenv:cover]
setenv = NOSE_WITH_COVERAGE=1 setenv = NOSE_WITH_COVERAGE=1