isso/tox.ini
Martin Zimmermann f3e5d8dc1c add support for html5lib==0.95, fixes #60
The python-html5lib package in Debian Wheezy does not support
`etree` as tree builder (called `simpletree` back then).
2014-01-30 20:49:11 +01:00

26 lines
502 B
INI
Executable File

[tox]
envlist = py26,py27,py33
[testenv:py26]
deps =
argparse
configparser
{[testenv]deps}
[testenv:py27]
deps =
configparser
{[testenv]deps}
[testenv:backport]
deps =
configparser
werkzeug==0.8.3
html5lib==0.95
{[testenv]deps}
[testenv]
deps =
nose
doctest-ignore-unicode
commands =
nosetests --with-doctest --with-doctest-ignore-unicode isso/ specs/
install_command =
pip install --allow-external ipaddr --allow-unverified ipaddr {opts} {packages}