tox.ini 388 B

1234567891011121314151617
  1. [tox]
  2. envlist =
  3. # Py3 tests currently fail because of text handling issues,
  4. # So only test py26/py27 for now.
  5. #py26,py27,py33,py34
  6. py26,py27
  7. [testenv]
  8. usedevelop = true
  9. setenv =
  10. LD_LIBRARY_PATH={toxinidir}/../src/.libs
  11. commands =
  12. python setup.py -q --cpp_implementation develop
  13. python setup.py build_py
  14. python setup.py -q test -q {posargs}
  15. deps =
  16. six