dataCreating/tox.ini

45 lines
900 B
INI
Raw Normal View History

2023-10-25 02:22:17 +00:00
[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
2023-10-25 08:34:21 +00:00
#commands =
# {envpython} {toxinidir}/bin/e2f.py
2023-10-25 02:22:17 +00:00
[testenv:devenv2]
envdir = devenv2
basepython = python2.7
usedevelop = True
[testenv:py3-release]
basepython = python3
deps =
-r{toxinidir}/requirements.txt
commands =
2023-10-25 08:34:21 +00:00
{envpython} {toxinidir}/release.py {envdir} {envsitepackagesdir} {toxinidir}/build/dataCreating {toxinidir}
2023-10-25 02:22:17 +00:00
[testenv:py27-release]
basepython = python2.7
deps =
-r{toxinidir}/requirements.txt
commands =
{envpython} {toxinidir}/release.py {envdir} {envsitepackagesdir} {toxinidir}/build/excel2feature {toxinidir}