2015-01-13 20:58:31 +00:00
|
|
|
[tox]
|
|
|
|
envlist =
|
2015-08-20 17:51:26 +00:00
|
|
|
# Py3 tests currently fail because of text handling issues,
|
|
|
|
# So only test py26/py27 for now.
|
2015-08-15 03:09:29 +00:00
|
|
|
#py26,py27,py33,py34
|
|
|
|
py26,py27
|
2015-01-13 20:58:31 +00:00
|
|
|
|
|
|
|
[testenv]
|
|
|
|
usedevelop = true
|
|
|
|
setenv =
|
|
|
|
LD_LIBRARY_PATH={toxinidir}/../src/.libs
|
|
|
|
commands =
|
2015-08-20 19:29:10 +00:00
|
|
|
python setup.py -q build_py
|
|
|
|
python setup.py -q build {posargs}
|
2015-08-16 17:56:25 +00:00
|
|
|
python setup.py -q test -q {posargs}
|
2015-08-20 19:29:10 +00:00
|
|
|
pip install --install-option {posargs: -q} .
|
2015-01-13 20:58:31 +00:00
|
|
|
deps =
|
|
|
|
six
|