Move pep8 checks to py3 by default
Change-Id: I0964970c1590658754ea59b394835dc1472b7292
This commit is contained in:
parent
7a2adab56a
commit
1b0119797f
@ -39,7 +39,7 @@ class Zone:
|
||||
self.to_file(sys.stdout)
|
||||
|
||||
def to_file(self, f):
|
||||
if type(f) is file:
|
||||
if type(f) is 'file':
|
||||
fd = f
|
||||
elif type(f) is str:
|
||||
if os.path.isdir(f):
|
||||
|
2
tox.ini
2
tox.ini
@ -67,7 +67,7 @@ commands = sh tools/pretty_flake8.sh
|
||||
|
||||
[testenv:pep8]
|
||||
deps = -r{toxinidir}/test-requirements.txt
|
||||
basepython = python2.7
|
||||
basepython = python3
|
||||
commands = sh tools/pretty_flake8.sh
|
||||
{[testenv:bandit]commands}
|
||||
doc8 README.rst releasenotes/source doc/source rally-jobs \
|
||||
|
Loading…
x
Reference in New Issue
Block a user