forked from celery/celery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
106 lines (83 loc) · 2.8 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
94
95
96
97
98
99
100
101
102
103
104
105
106
[tox]
requires =
tox-gh-actions
envlist =
{3.6,3.7,3.8,3.9,3.10,pypy3}-unit
{3.6,3.7,3.8,3.9,3.10,pypy3}-integration-{rabbitmq,redis,dynamodb,azureblockblob,cache,cassandra,elasticsearch}
flake8
apicheck
configcheck
bandit
[gh-actions]
python =
3.6: 3.6-unit
3.7: 3.7-unit
3.8: 3.8-unit
3.9: 3.9-unit
3.10: 3.10-unit
pypy3: pypy3-unit
[testenv]
sitepackages = False
recreate = False
passenv =
AZUREBLOCKBLOB_URL
deps=
-r{toxinidir}/requirements/default.txt
-r{toxinidir}/requirements/test.txt
-r{toxinidir}/requirements/pkgutils.txt
3.6,3.7,3.8,3.9,3.10: -r{toxinidir}/requirements/test-ci-default.txt
3.6,3.7,3.8,3.9,3.10: -r{toxinidir}/requirements/docs.txt
pypy3: -r{toxinidir}/requirements/test-ci-default.txt
integration: -r{toxinidir}/requirements/test-integration.txt
linkcheck,apicheck,configcheck: -r{toxinidir}/requirements/docs.txt
lint: pre-commit
bandit: bandit
commands =
unit: pytest --maxfail=10 -v --cov=celery --cov-report=xml --cov-report term {posargs}
integration: pytest -xsv t/integration {posargs}
setenv =
BOTO_CONFIG = /dev/null
WORKER_LOGLEVEL = INFO
PYTHONIOENCODING = UTF-8
cache: TEST_BROKER=redis://
cache: TEST_BACKEND=cache+pylibmc://
cassandra: TEST_BROKER=redis://
cassandra: TEST_BACKEND=cassandra://
elasticsearch: TEST_BROKER=redis://
elasticsearch: TEST_BACKEND=elasticsearch://@localhost:9200
rabbitmq: TEST_BROKER=pyamqp://
rabbitmq: TEST_BACKEND=rpc
redis: TEST_BROKER=redis://
redis: TEST_BACKEND=redis://
dynamodb: TEST_BROKER=redis://
dynamodb: TEST_BACKEND=dynamodb://@localhost:8000
dynamodb: AWS_ACCESS_KEY_ID=test_aws_key_id
dynamodb: AWS_SECRET_ACCESS_KEY=test_aws_secret_key
azureblockblob: TEST_BROKER=redis://
azureblockblob: TEST_BACKEND=azureblockblob://DefaultEndpointsProtocol=http;AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;BlobEndpoint=http://127.0.0.1:10000/devstoreaccount1;
basepython =
3.6: python3.6
3.7: python3.7
3.8: python3.8
3.9: python3.9
3.10: python3.10
pypy3: pypy3
lint,apicheck,linkcheck,configcheck,bandit: python3.9
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:lint]
commands =
pre-commit {posargs:run --all-files --show-diff-on-failure}