mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-23 07:33:27 -06:00
bd5a5012d2
* Make jinja2 an optional dependency and csrgen an optional plugin * Make otptoken_yubikey an optional plugin Signed-off-by: Christian Heimes <cheimes@redhat.com> Reviewed-By: Martin Basti <mbasti@redhat.com>
55 lines
1.3 KiB
INI
55 lines
1.3 KiB
INI
[tox]
|
|
minversion=2.3.1
|
|
envlist=py27,py35,py36,pylint2,pylint3,pypi
|
|
skip_missing_interpreters=true
|
|
skipsdist=true
|
|
|
|
[testenv]
|
|
# always re-create virtual env. A special install helper is used to configure,
|
|
# build and install packages.
|
|
recreate=True
|
|
install_command={toxinidir}/.tox-install.sh wheel_bundle {envpython} {envsitepackagesdir} {packages}
|
|
changedir={envdir}
|
|
setenv=
|
|
HOME={envtmpdir}
|
|
deps=
|
|
ipaclient[csrgen]
|
|
ipatests
|
|
commands=
|
|
{envbindir}/ipa --help
|
|
{envpython} -bb {envbindir}/ipa-run-tests --ipaclient-unittests
|
|
|
|
[testenv:pylint2]
|
|
basepython=python2.7
|
|
deps=
|
|
ipaclient[csrgen,otptoken_yubikey]
|
|
pylint
|
|
commands=
|
|
{envpython} -m pylint \
|
|
--rcfile={toxinidir}/pylintrc \
|
|
--load-plugins pylint_plugins \
|
|
{envsitepackagesdir}/ipaclient \
|
|
{envsitepackagesdir}/ipalib \
|
|
{envsitepackagesdir}/ipapython
|
|
|
|
[testenv:pylint3]
|
|
basepython=python3
|
|
deps={[testenv:pylint2]deps}
|
|
commands={[testenv:pylint2]commands}
|
|
|
|
[testenv:pypi]
|
|
recreate=True
|
|
install_command={toxinidir}/.tox-install.sh pypi_packages {envpython} {envsitepackagesdir} {packages}
|
|
changedir={envdir}
|
|
setenv=
|
|
HOME={envtmpdir}
|
|
deps=
|
|
pytest
|
|
ipaclient
|
|
# placeholder
|
|
ipaplatform
|
|
ipaserver
|
|
ipatests
|
|
commands=
|
|
{envpython} -m pytest {toxinidir}/pypi/test_placeholder.py
|