blob: 6bcca5ece125cd915fcd5e2a5db9d519b204bc43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
[tox]
envlist=py27,py26,py34,py33,py32,pypy,flakes
[testenv:X]
commands=echo {posargs}
[testenv]
commands=py.test --junitxml={envlogdir}/junit-{envname}.xml {posargs}
deps=pytest>=2.3.5
[testenv:docs]
basepython=python
changedir=doc
deps=sphinx
{[testenv]deps}
commands=
py.test -v \
--junitxml={envlogdir}/junit-{envname}.xml \
check_sphinx.py {posargs}
[testenv:flakes]
deps = pytest-flakes>=0.2
commands = py.test --flakes -m flakes tox tests
[testenv:py25]
setenv= PIP_INSECURE=1
[pytest]
rsyncdirs=tests tox
addopts = -rsxXf
|