Add py36 testenv

Python 3.6 is installed by default in Ubuntu 18.04 LTS.
Therefore, according to transition plan [1],
we should have py36 testenv ready for it.

[1] https://wiki.ubuntu.com/Python/Python36Transition

Change-Id: I70c34207a37b7e4c3d917d6cbb6667c47495e860
This commit is contained in:
Vu Cong Tuan 2018-06-25 09:46:03 +07:00
parent 8c55c412c9
commit c372a9b412
1 changed files with 7 additions and 0 deletions

View File

@ -34,6 +34,13 @@ commands =
{[testenv]commands}
stestr run {posargs}
[testenv:py36]
description = Runs unit test using Python3.6
basepython = python3.6
commands =
{[testenv]commands}
stestr run {posargs}
[testenv:cover]
description = Calculates code coverage
basepython = python2.7