Merge "Added the py35 env"

This commit is contained in:
Jenkins 2017-06-27 11:01:51 +00:00 committed by Gerrit Code Review
commit 9c161be7aa
2 changed files with 11 additions and 2 deletions

View File

@ -5,7 +5,7 @@ description-file =
README.rst
author = OpenStack
author-email = openstack-dev@lists.openstack.org
home-page = http://docs.openstack.org/developer/bifrost/
home-page = https://docs.openstack.org/developer/bifrost/
classifier =
Environment :: OpenStack
Intended Audience :: Information Technology
@ -15,6 +15,7 @@ classifier =
Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3.5
[files]
packages =

10
tox.ini
View File

@ -1,5 +1,5 @@
[tox]
minversion = 1.6
minversion = 2.0
envlist = py35,py27,docs,pep8
skipsdist = True
@ -31,6 +31,14 @@ commands = oslo_debug_helper -t bifrost/tests {posargs}
[testenv:releasenotes]
commands = sphinx-build -a -E -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
[testenv:debug-py27]
basepython = python2.7
commands = oslo_debug_helper -t bifrost/tests {posargs}
[testenv:debug-py35]
basepython = python3.5
commands = oslo_debug_helper -t bifrost/tests {posargs}
[flake8]
show-source = True
ignore = F403,H102,H303