aboutsummaryrefslogtreecommitdiff
path: root/python/tox.ini
blob: 24b709ef2db44c48f939385127d606d951ad6110 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[tox]
envlist =
    # Py3 tests currently fail because of text handling issues,
    # So only test py26/py27 for now.
    #py26,py27,py33,py34
    py26,py27

[testenv]
usedevelop = true
setenv =
    LD_LIBRARY_PATH={toxinidir}/../src/.libs
commands =
    python setup.py -q --cpp_implementation develop
    python setup.py build_py
    python setup.py -q test -q {posargs}
deps =
    six