45 lines
899 B
INI
45 lines
899 B
INI
|
[tox]
|
||
|
envlist = devenv
|
||
|
minversion = 1.6
|
||
|
skipsdist = False
|
||
|
|
||
|
[testenv]
|
||
|
install_command = pip install --force-reinstall -U {opts} {packages}
|
||
|
setenv = VIRTUAL_ENV={envdir}
|
||
|
NOSE_WITH_COVERAGE=1
|
||
|
NOSE_COVER_BRANCHES=1
|
||
|
deps =
|
||
|
-r{toxinidir}/requirements.txt
|
||
|
|
||
|
|
||
|
[testenv:devenv]
|
||
|
envdir = devenv
|
||
|
basepython = python3
|
||
|
usedevelop = True
|
||
|
commands =
|
||
|
{envpython} {toxinidir}/bin/e2f.py
|
||
|
|
||
|
[testenv:devenv2]
|
||
|
envdir = devenv2
|
||
|
basepython = python2.7
|
||
|
usedevelop = True
|
||
|
|
||
|
|
||
|
[testenv:py3-release]
|
||
|
basepython = python3
|
||
|
deps =
|
||
|
-r{toxinidir}/requirements.txt
|
||
|
|
||
|
commands =
|
||
|
{envpython} {toxinidir}/release.py {envdir} {envsitepackagesdir} {toxinidir}/build/excel2feature {toxinidir}
|
||
|
|
||
|
|
||
|
[testenv:py27-release]
|
||
|
basepython = python2.7
|
||
|
deps =
|
||
|
-r{toxinidir}/requirements.txt
|
||
|
|
||
|
commands =
|
||
|
{envpython} {toxinidir}/release.py {envdir} {envsitepackagesdir} {toxinidir}/build/excel2feature {toxinidir}
|
||
|
|