
Drop the 2.7 tox job and add some Python 3 classifiers to setup.cfg Change-Id: I83fcdd39cbfffada7b26ab784f7a907aeea0b5cd
19 lines
382 B
INI
19 lines
382 B
INI
[tox]
|
|
minversion = 1.6
|
|
envlist = pep8, py36, py38
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
deps = -r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
commands = nosetests
|
|
|
|
[testenv:pep8]
|
|
commands = flake8
|
|
|
|
[flake8]
|
|
show-source = true
|
|
max-line-length = 80
|
|
exclude = ENV,.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build,tools
|