Add py36 testenv

Python 3.6 is installed by default in Ubuntu 18.04 LTS.
Therefore, according to Transition Plan [1],
it'll be handy to have py36 testenv.

For more details, please check Python2 Deprecation Timeline [2]
and Python3-first Goal - Completion Criteria [3].

[1] https://wiki.ubuntu.com/Python/Python36Transition
[2] https://governance.openstack.org/tc/resolutions/20180529-python2-deprecation-timeline.html
[3] https://review.openstack.org/#/c/575933/8/goals/stein/python3-first.rst@42

Change-Id: I2cfd19f5deece8cda8e7ea4b8ee1b747dc5534ef
This commit is contained in:
Vu Cong Tuan 2018-06-27 11:08:18 +07:00
parent 5f9611f28b
commit c56db2edce
1 changed files with 5 additions and 0 deletions

View File

@ -19,6 +19,7 @@ deps = -c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/re
commands = commands =
py27: {[unit_tests]commands} py27: {[unit_tests]commands}
py35: {[unit_tests]commands} py35: {[unit_tests]commands}
py36: {[unit_tests]commands}
[unit_tests] [unit_tests]
commands = python manage.py test heat_dashboard.test --settings=heat_dashboard.test.settings commands = python manage.py test heat_dashboard.test --settings=heat_dashboard.test.settings
@ -40,6 +41,10 @@ commands =
basepython = python3.5 basepython = python3.5
commands = {[unit_tests]commands} commands = {[unit_tests]commands}
[testenv:py36]
basepython = python3.6
commands = {[unit_tests]commands}
[testenv:py3-dj111] [testenv:py3-dj111]
basepython = python3 basepython = python3
commands = commands =