Merge "Be explicit about which python3 to use for py36 and py37 tox envs"

This commit is contained in:
Zuul 2019-11-08 02:38:05 +00:00 committed by Gerrit Code Review
commit 9696fe43a2

@ -30,12 +30,12 @@ commands =
flake8 --filename=* bin --exclude=bin/*.sh
[testenv:py36]
basepython = python3
basepython = python3.6
commands =
nosetests -v tests/unit
[testenv:py37]
basepython = python3
basepython = python3.7
commands = {[testenv:py36]commands}
[testenv:func]