Codebase list configobj / 157f9084-69ae-4c6c-9242-e3837a98615b/main tox.ini
157f9084-69ae-4c6c-9242-e3837a98615b/main

Tree @157f9084-69ae-4c6c-9242-e3837a98615b/main (Download .tar.gz)

tox.ini @157f9084-69ae-4c6c-9242-e3837a98615b/mainraw · history · blame

# content of: tox.ini, put in same dir as setup.py
[tox]
envlist = py26,py27,py32,py33
[testenv]
deps=pytest
    pytest-cov
setenv =
    PYTHONWARNINGS = always
commands=python test_configobj.py
     python validate.py
     coverage run --source=configobj.py,validate.py -m py.test tests
     coverage report