File: tox.ini

package info (click to toggle)
configobj 5.0.6-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 908 kB
  • ctags: 665
  • sloc: python: 3,034; makefile: 166; sh: 8
file content (12 lines) | stat: -rw-r--r-- 309 bytes parent folder | download | duplicates (4)
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