-
Notifications
You must be signed in to change notification settings - Fork 9
/
tox.ini
66 lines (58 loc) · 1.51 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
[tox]
envlist = py{38,311,312}-celery{53}-django{42},quality,docs
[doc8]
ignore = D001
[pycodestyle]
exclude = .git,.tox,migrations
max-line-length = 120
[pydocstyle]
ignore = D101,D105,D200,D203,D212
match-dir = (?!migrations)
[pytest]
DJANGO_SETTINGS_MODULE = test_settings
addopts = --cov celery_utils --cov-report term-missing --cov-report xml
norecursedirs = .* docs requirements
[testenv]
deps =
django42: Django>=4.2,<4.3
celery53: -r{toxinidir}/requirements/celery53.txt
-r{toxinidir}/requirements/test.txt
commands =
py.test tests/ celery_utils/ {posargs}
[testenv:docs]
setenv =
DJANGO_SETTINGS_MODULE = test_settings
PYTHONPATH = {toxinidir}
allowlist_externals =
make
rm
deps =
-r{toxinidir}/requirements/doc.txt
commands =
doc8 --ignore-path docs/_build README.rst docs
rm -f docs/celery_utils.rst
rm -f docs/modules.rst
make -C docs clean
make -C docs html
python -m build --wheel
twine check dist/*
[testenv:quality]
setenv =
DJANGO_SETTINGS_MODULE = test_settings
PYTHONPATH = {toxinidir}
allowlist_externals =
make
rm
touch
deps =
-r{toxinidir}/requirements/doc.txt
-r{toxinidir}/requirements/quality.txt
-r{toxinidir}/requirements/test.txt
commands =
touch tests/__init__.py
pylint celery_utils tests test_utils
rm tests/__init__.py
pycodestyle celery_utils tests
pydocstyle celery_utils tests
isort --check-only tests test_utils celery_utils manage.py setup.py test_settings.py
make help