Move pep8 checks to py3 by default

Change-Id: I0964970c1590658754ea59b394835dc1472b7292
This commit is contained in:
Graham Hayes 2018-04-04 15:36:18 +01:00
parent 7a2adab56a
commit 1b0119797f
2 changed files with 2 additions and 2 deletions

View File

@ -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):

View File

@ -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 \