Make tox -e mkenv work

This is a common typo, so let's just make things work. It does the exact
same thing as tox -e mkvenv.
This commit is contained in:
Florian Bruhin 2016-05-15 09:59:44 +02:00
parent a1bac9509b
commit 33236b5314

View File

@ -77,6 +77,14 @@ usedevelop = true
deps =
-r{toxinidir}/requirements.txt
# This is undocumented, but it's a common typo, so let's make it work
[testenv:mkenv]
basepython = {[testenv:mkvenv]basepython}
commands = {[testenv:mkvenv]commands}
envdir = {[testenv:mkvenv]envdir}
usedevelop = {[testenv:mkvenv]usedevelop}
deps = {[testenv:mkvenv]deps}
[testenv:unittests-frozen]
# cx_Freeze doesn't support Python 3.5 yet
basepython = python3.4