forked from celery/celery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
93 lines (77 loc) · 2.4 KB
/
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[tox]
envlist =
{2.7,pypy,3.4,3.5,3.6}-unit
{2.7,pypy,3.4,3.5,3.6}-integration-{rabbitmq,redis,dynamodb}
flake8
flakeplus
apicheck
configcheck
pydocstyle
isort-check
bandit
[testenv]
deps=
-r{toxinidir}/requirements/default.txt
-r{toxinidir}/requirements/test.txt
2.7: -r{toxinidir}/requirements/test-ci-default.txt
3.4,3.5,3.6: -r{toxinidir}/requirements/test-ci-default.txt
pypy: -r{toxinidir}/requirements/test-ci-base.txt
integration: -r{toxinidir}/requirements/test-integration.txt
linkcheck,apicheck,configcheck: -r{toxinidir}/requirements/docs.txt
flake8,flakeplus,pydocstyle: -r{toxinidir}/requirements/pkgutils.txt
isort-check: -r{toxinidir}/requirements/test-ci-default.txt
isort-check: isort>=4.3.4
isort-check: Sphinx==1.6.5
bandit: bandit
sitepackages = False
recreate = False
commands =
unit: py.test -xv --cov=celery --cov-report=xml --cov-report term
integration: py.test -xsv t/integration
setenv =
WORKER_LOGLEVEL = INFO
PYTHONIOENCODING = UTF-8
rabbitmq: TEST_BROKER=pyamqp:https://
rabbitmq: TEST_BACKEND=rpc
redis: TEST_BROKER=redis:https://
redis: TEST_BACKEND=redis:https://
dynamodb: TEST_BROKER=redis:https://
dynamodb: TEST_BACKEND=dynamodb:https://@localhost:8000
dynamodb: AWS_ACCESS_KEY_ID=test_aws_key_id
dynamodb: AWS_SECRET_ACCESS_KEY=test_aws_secret_key
PASSENV =
TRAVIS
basepython =
2.7: python2.7
3.4: python3.4
3.5: python3.5
3.6: python3.6
pypy: pypy
flake8,apicheck,linkcheck,configcheck,pydocstyle,isort-check,bandit: python3.6
flakeplus: python2.7
usedevelop = True
[testenv:apicheck]
setenv =
PYTHONHASHSEED = 100
commands =
sphinx-build -j2 -b apicheck -d {envtmpdir}/doctrees docs docs/_build/apicheck
[testenv:configcheck]
commands =
sphinx-build -j2 -b configcheck -d {envtmpdir}/doctrees docs docs/_build/configcheck
[testenv:linkcheck]
commands =
sphinx-build -j2 -b linkcheck -d {envtmpdir}/doctrees docs docs/_build/linkcheck
[testenv:bandit]
commands =
bandit -b bandit.json -r celery/
[testenv:flake8]
commands =
flake8 -j 2 {toxinidir}/celery {toxinidir}/t
[testenv:flakeplus]
commands =
flakeplus --2.7 {toxinidir}/celery {toxinidir}/t
[testenv:pydocstyle]
commands =
pydocstyle {toxinidir}/celery
[testenv:isort-check]
commands = isort -j2 --project celery --diff --order-by-type -rc -c {toxinidir}/celery {toxinidir}/t