Enable running unit tests in py37 environment

Until now no unit tests have been executed in py37 environment. This
change fixes tox configuration to enable running these tests.

Change-Id: I63bc0309fe6b4b314be97d8fc1bd051d2119ea84
This commit is contained in:
Witek Bedyk 2019-11-26 10:00:53 +01:00
parent c57f201c7c
commit 38a91f0621

View File

@ -29,6 +29,12 @@ commands =
{[testenv]commands}
stestr run {posargs}
[testenv:py37]
basepython = python3.7
commands =
{[testenv]commands}
stestr run {posargs}
[testenv:cover]
commands =
{[testenv]commands}