forked from python-consul/python-consul
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
59 lines (53 loc) · 967 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
53
54
55
56
57
58
59
[tox]
envlist = flake8, py26, py27, pypy, py35, py36
[flake8]
ignore = F811,E226
exclude = .tox/*,xx/*,__*,docs,*aio.py
[testenv]
deps =
pytest
pytest-twisted
pytest-rerunfailures
tornado
twisted
treq
pyOpenSSL
commands =
py.test --reruns=3 {posargs:consul tests}
[testenv:py26]
deps =
pytest
pytest-rerunfailures
commands =
py.test --reruns=3 {posargs:consul tests}
[testenv:py35]
deps =
pytest
pytest-rerunfailures
pytest-twisted
twisted
treq
pyOpenSSL
tornado
aiohttp
flake8
commands =
py.test --reruns=3 {posargs:consul tests}
flake8 --exclude=".tox/*,xx/*,__*,docs/*"
[testenv:py36]
deps =
pytest
pytest-rerunfailures
pytest-twisted
twisted
treq
pyOpenSSL
tornado
aiohttp
flake8
commands =
py.test --reruns=3 {posargs:consul tests}
flake8 --exclude=".tox/*,xx/*,__*,docs/*"
[testenv:flake8]
deps = flake8
commands = flake8