1234567891011121314151617181920212223242526272829303132333435 |
- [tox]
- envlist =
- cover,cover3,docs,py26,py27,py32,py33,py34,py35,pypy
- [testenv]
- deps =
- pytest >= 2.5.2
- meld3 >= 1.0.0
- mock >= 0.5.0
- commands =
- py.test {posargs}
- [testenv:cover]
- basepython = python2.6
- commands =
- py.test --cov=supervisor --cov-report=term-missing --cov-report=xml {posargs}
- deps =
- {[testenv]deps}
- pytest-cov
- [testenv:cover3]
- basepython = python3.3
- commands =
- py.test --cov=supervisor --cov-report=term-missing --cov-report=xml {posargs}
- deps =
- {[testenv:cover]deps}
- [testenv:docs]
- deps =
- Sphinx
- readme
- whitelist_externals = make
- commands =
- make -C docs html BUILDDIR={envtmpdir} "SPHINXOPTS=-W -E"
- python setup.py check -m -r -s
|