blob: 17efc836b51891d28fd202dc11bf2c77ea0149ce (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
[tox]
envlist=py27,py26,py34,py33,py35,pypy,flakes,py26-bare
[testenv:X]
commands=echo {posargs}
[testenv]
commands= py.test --timeout=180 {posargs:tests}
deps=pytest>=2.3.5
pytest-timeout
[testenv:py26-bare]
deps =
commands = tox -h
[testenv:docs]
basepython=python
changedir=doc
deps=sphinx
{[testenv]deps}
commands=
py.test -v check_sphinx.py {posargs}
[testenv:flakes]
platform=linux
deps = pytest-flakes>=0.2
pytest-pep8
commands =
py.test --flakes -m flakes tox tests
py.test --pep8 -m pep8 tox tests
[testenv:dev]
# required to make looponfail reload on every source code change
usedevelop = True
deps =
pytest-xdist>=1.11
commands = {posargs:py.test -s -x -f -v}
[pytest]
rsyncdirs = tests tox
addopts = -rsxX
# pytest-xdist plugin configuration
looponfailroots = tox tests
norecursedirs = .hg .tox
# pytest-pep8 plugin configuration
pep8maxlinelength = 99
# W503 - line break before binary operator
# E402 - module level import not at top of file
# E731 - do not assign a lambda expression, use a def
pep8ignore =
*.py W503 E402 E731
|