forked from python-consul/python-consul
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
52 lines (46 loc) · 839 Bytes
/
tox.ini
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
[tox]
envlist = flake8, py26, py27, pypy, py34
[flake8]
ignore = F811,E226
exclude = .tox/*,xx/*,__*,docs,*aio.py
[testenv]
deps =
pytest
pytest-twisted
pytest-rerunfailures
tornado
twisted
treq
commands =
py.test --reruns=3 {posargs:consul tests}
[testenv:py26]
deps =
pytest
pytest-rerunfailures
tornado
commands =
py.test --reruns=3 {posargs:consul tests}
[testenv:py34]
deps =
pytest
pytest-rerunfailures
pytest-twisted
twisted
treq
tornado
aiohttp
flake8
commands =
py.test --reruns=3 {posargs:consul tests}
flake8 --exclude=".tox/*,xx/*,__*,docs/*"
[testenv:flake8]
deps = flake8
commands = flake8
[testenv:coverage]
deps =
pytest-cov
tornado
coveralls
commands =
py.test --cov {envsitepackagesdir}/consul tests
coveralls