Files
pecan/tox.ini
Monty Taylor cc7ffb72ab Add docs environment to tox.ini
As per the governance resolution https://review.openstack.org/119875,
projects should have a docs environment in their tox.ini testing
interface. Add one.

Change-Id: Ic8285618f3a8b00767ef150411c2f25c09c311b6
2014-09-08 14:34:18 -07:00

217 lines
8.6 KiB
INI

[tox]
envlist = py26,py27,py32,py33,py34,scaffolds-26,scaffolds-27,scaffolds-32,scaffolds-33,scaffolds-34,scaffolds-26-rest-api,scaffolds-27-rest-api,scaffolds-32-rest-api,scaffolds-33-rest-api,scaffolds-34-rest-api,pep8
[testenv]
commands={envpython} setup.py test -v
[testenv:scaffolds-base]
deps = pep8
gunicorn
uwsgi
[testenv:scaffolds-26]
basepython = python2.6
deps = {[testenv:scaffolds-base]deps}
unittest2
changedir={envdir}/tmp
commands=pecan create testing123
{envpython} testing123/setup.py install
{envpython} testing123/setup.py test -q
pep8 --repeat --show-source testing123/setup.py testing123/testing123
{envpython} {toxinidir}/pecan/tests/scaffold_builder.py
[testenv:scaffolds-26-rest-api]
basepython = python2.6
deps = {[testenv:scaffolds-base]deps}
unittest2
changedir={envdir}/tmp
commands=pecan create testing123 rest-api
{envpython} testing123/setup.py install
{envpython} testing123/setup.py test -q
pep8 --repeat --show-source testing123/setup.py testing123/testing123
{envpython} {toxinidir}/pecan/tests/scaffold_builder.py
[testenv:scaffolds-27]
basepython = python2.7
deps = {[testenv:scaffolds-base]deps}
changedir={[testenv:scaffolds-26]changedir}
commands=pecan create testing123
{envpython} testing123/setup.py install
{envpython} testing123/setup.py test -q
pep8 --repeat --show-source testing123/setup.py testing123/testing123
{envpython} {toxinidir}/pecan/tests/scaffold_builder.py
[testenv:scaffolds-27-rest-api]
basepython = python2.7
deps = {[testenv:scaffolds-base]deps}
changedir={[testenv:scaffolds-26]changedir}
commands=pecan create testing123 rest-api
{envpython} testing123/setup.py install
{envpython} testing123/setup.py test -q
pep8 --repeat --show-source testing123/setup.py testing123/testing123
{envpython} {toxinidir}/pecan/tests/scaffold_builder.py
[testenv:scaffolds-32]
basepython = python3.2
deps = {[testenv:scaffolds-base]deps}
changedir={[testenv:scaffolds-26]changedir}
commands=pecan create testing123
curl "http://python-distribute.org/distribute_setup.py" -O
{envpython} distribute_setup.py
{envpython} testing123/setup.py install
{envpython} testing123/setup.py test -q
pep8 --repeat --show-source testing123/setup.py testing123/testing123
{envpython} {toxinidir}/pecan/tests/scaffold_builder.py
[testenv:scaffolds-32-rest-api]
basepython = python3.2
deps = {[testenv:scaffolds-base]deps}
changedir={[testenv:scaffolds-26]changedir}
commands=pecan create testing123 rest-api
curl "http://python-distribute.org/distribute_setup.py" -O
{envpython} distribute_setup.py
{envpython} testing123/setup.py install
{envpython} testing123/setup.py test -q
pep8 --repeat --show-source testing123/setup.py testing123/testing123
{envpython} {toxinidir}/pecan/tests/scaffold_builder.py
[testenv:scaffolds-33]
basepython = python3.3
deps = {[testenv:scaffolds-base]deps}
changedir={[testenv:scaffolds-26]changedir}
commands=pecan create testing123
curl "http://python-distribute.org/distribute_setup.py" -O
{envpython} distribute_setup.py
{envpython} testing123/setup.py install
{envpython} testing123/setup.py test -q
pep8 --repeat --show-source testing123/setup.py testing123/testing123
{envpython} {toxinidir}/pecan/tests/scaffold_builder.py
[testenv:scaffolds-33-rest-api]
basepython = python3.3
deps = {[testenv:scaffolds-base]deps}
changedir={[testenv:scaffolds-26]changedir}
commands=pecan create testing123 rest-api
curl "http://python-distribute.org/distribute_setup.py" -O
{envpython} distribute_setup.py
{envpython} testing123/setup.py install
{envpython} testing123/setup.py test -q
pep8 --repeat --show-source testing123/setup.py testing123/testing123
{envpython} {toxinidir}/pecan/tests/scaffold_builder.py
[testenv:scaffolds-34]
basepython = python3.4
deps = {[testenv:scaffolds-base]deps}
changedir={[testenv:scaffolds-26]changedir}
commands=pecan create testing123
curl "http://python-distribute.org/distribute_setup.py" -O
{envpython} distribute_setup.py
{envpython} testing123/setup.py install
{envpython} testing123/setup.py test -q
pep8 --repeat --show-source testing123/setup.py testing123/testing123
{envpython} {toxinidir}/pecan/tests/scaffold_builder.py
[testenv:scaffolds-34-rest-api]
basepython = python3.4
deps = {[testenv:scaffolds-base]deps}
changedir={[testenv:scaffolds-26]changedir}
commands=pecan create testing123 rest-api
curl "http://python-distribute.org/distribute_setup.py" -O
{envpython} distribute_setup.py
{envpython} testing123/setup.py install
{envpython} testing123/setup.py test -q
pep8 --repeat --show-source testing123/setup.py testing123/testing123
{envpython} {toxinidir}/pecan/tests/scaffold_builder.py
[testenv:wsme-stable]
basepython = python2.7
deps = nose
# Manually download the source from PyPI and build it with the --editable flag.
# This gives us access to run the wsmeext (pecan) tests.
commands = pip install --pre --no-deps --no-install wsme
pip install --no-clean -ve {envdir}/build/wsme/
nosetests -v {envdir}/build/wsme/tests/pecantest
[testenv:wsme-tip]
basepython = python2.7
deps = -egit+http://git.openstack.org/cgit/stackforge/wsme#egg=wsme
nose
changedir = {envdir}/src/wsme
commands = nosetests -v tests/pecantest
[testenv:ceilometer-stable]
basepython = python2.7
deps = -egit+http://git.openstack.org/cgit/openstack/ceilometer@stable/icehouse#egg=ceilometer
changedir = {envdir}/src/ceilometer
commands = tox -e py27 --notest # ensure a virtualenv is built
{envdir}/src/ceilometer/.tox/py27/bin/pip install -U {toxinidir} # install pecan-dev
tox -e py27
[testenv:ceilometer-tip]
basepython = python2.7
deps = -egit+http://git.openstack.org/cgit/openstack/ceilometer#egg=ceilometer
changedir = {envdir}/src/ceilometer
commands = tox -e py27 --notest # ensure a virtualenv is built
{envdir}/src/ceilometer/.tox/py27/bin/pip install -U {toxinidir} # install pecan-dev
tox -e py27
[testenv:ironic-stable]
basepython = python2.7
deps = -egit+http://git.openstack.org/cgit/openstack/ironic@stable/icehouse#egg=ironic
changedir = {envdir}/src/ironic
commands = tox -e py27 --notest # ensure a virtualenv is built
{envdir}/src/ironic/.tox/py27/bin/pip install -U {toxinidir} # install pecan-dev
tox -e py27
[testenv:ironic-tip]
basepython = python2.7
deps = -egit+http://git.openstack.org/cgit/openstack/ironic#egg=ironic
changedir = {envdir}/src/ironic
commands = tox -e py27 --notest # ensure a virtualenv is built
{envdir}/src/ironic/.tox/py27/bin/pip install -U {toxinidir} # install pecan-dev
tox -e py27
[testenv:barbican-tip]
basepython = python2.7
deps = -egit+http://git.openstack.org/cgit/openstack/barbican#egg=barbican
changedir = {envdir}/src/barbican
commands = tox -e py27 --notest # ensure a virtualenv is built
{envdir}/src/barbican/.tox/py27/bin/pip install -U {toxinidir} # install pecan-dev
tox -e py27
[testenv:storyboard-tip]
basepython = python2.7
deps = -egit+http://git.openstack.org/cgit/openstack-infra/storyboard#egg=storyboard
changedir = {envdir}/src/storyboard
commands = tox -e py27 --notest # ensure a virtualenv is built
{envdir}/src/storyboard/.tox/py27/bin/pip install -U {toxinidir} # install pecan-dev
tox -e py27
[testenv:designate-stable]
basepython = python2.7
deps = -egit+http://git.openstack.org/cgit/openstack/designate@stable/icehouse#egg=designate
changedir = {envdir}/src/designate
commands = tox -e py27 --notest # ensure a virtualenv is built
{envdir}/src/designate/.tox/py27/bin/pip install -U {toxinidir} # install pecan-dev
tox -e py27
[testenv:designate-tip]
basepython = python2.7
deps = -egit+http://git.openstack.org/cgit/openstack/designate#egg=designate
changedir = {envdir}/src/designate
commands = tox -e py27 --notest # ensure a virtualenv is built
{envdir}/src/designate/.tox/py27/bin/pip install -U {toxinidir} # install pecan-dev
tox -e py27
[testenv:pep8]
deps = pep8
commands = pep8 --repeat --show-source pecan setup.py
# Generic environment for running commands like packaging
[testenv:venv]
commands={posargs}
[testenv:docs]
deps = sphinx
commands = python setup.py build_sphinx