summaryrefslogtreecommitdiff
path: root/tox.ini
blob: 1d71631f840c4e0240e66c71c35657ccb3dfb404 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# 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