-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathtox.ini
More file actions
33 lines (27 loc) · 728 Bytes
/
Copy pathtox.ini
File metadata and controls
33 lines (27 loc) · 728 Bytes
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
[tox]
envlist =
{2.7,3.5,3.6}-unit
{2.7,3.5,3.6}-integration-{rabbitmq,redis,sqs}
flake8
flakeplus
configcheck
pydocstyle
basepython =
2.7: python2.7
3.4: python3.4
3.5: python3.5
3.6: python3.6
flake8,flakeplus,configcheck,pydocstyle: python2.7
[testenv:pydocstyle]
commands =
pydocstyle {toxinidir}/celery_connectors
[flake8]
max-line-length = 140
ignore = E126,E127,E131,E226,E261,E265,E266,E302,E305,E401,E402,F403,F405,E731
exclude = ./build*,cross.py,.tox/*,./celery_connectors/rabbitmq/rabbitmqadmin.py
[pycodestyle]
max-line-length = 140
exclude = ./build*,cross.py,.tox/*,./celery_connectors/rabbitmq/rabbitmqadmin.py
[testenv:lint]
deps = flake8
commands = flake8