Codebase list configobj / 4681f80c-bbcf-4e41-8d39-de0531c58115/main tox.ini
4681f80c-bbcf-4e41-8d39-de0531c58115/main

Tree @4681f80c-bbcf-4e41-8d39-de0531c58115/main (Download .tar.gz)

tox.ini @4681f80c-bbcf-4e41-8d39-de0531c58115/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