forked from celery/django-celery-beat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
79 lines (66 loc) · 2.07 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
[tox]
envlist =
py27-django{18,19,110,111}
py34-django{18,19,110,111,20}
py35-django{18,19,110,111,20}
pypy-django{18,19,110,111}
flake8
flakeplus
apicheck
linkcheck
pydocstyle
cov
[travis:env]
DJANGO =
1.8: django18
1.9: django19
1.10: django110
1.11: django111
2.0: django20
[testenv]
deps=
-r{toxinidir}/requirements/default.txt
-r{toxinidir}/requirements/test.txt
-r{toxinidir}/requirements/test-ci.txt
cov: -r{toxinidir}/requirements/test-django.txt
django20: -r{toxinidir}/requirements/test-django20.txt
django111: -r{toxinidir}/requirements/test-django111.txt
django110: -r{toxinidir}/requirements/test-django110.txt
django19: -r{toxinidir}/requirements/test-django19.txt
django18: -r{toxinidir}/requirements/test-django18.txt
py{27,34,35,py},cov: ephem
linkcheck,apicheck: -r{toxinidir}/requirements/docs.txt
flake8,flakeplus,pydocstyle: -r{toxinidir}/requirements/pkgutils.txt
sitepackages = False
recreate = False
commands =
pip install -U https://github.com/celery/celery/zipball/master#egg=celery
pip install -U https://github.com/celery/kombu/zipball/master#egg=kombu
py.test -xv
[testenv:apicheck]
basepython = python3.5
commands =
sphinx-build -W -b apicheck -d {envtmpdir}/doctrees docs docs/_build/apicheck
[testenv:linkcheck]
basepython = python3.5
commands =
sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees docs docs/_build/linkcheck
[testenv:flake8]
basepython = python2.7
commands =
flake8 {toxinidir}/django_celery_beat {toxinidir}/t
[testenv:flakeplus]
basepython = python2.7
commands =
flakeplus --2.7 {toxinidir}/django_celery_beat {toxinidir}/t
[testenv:pydocstyle]
basepython = python2.7
commands =
pydocstyle {toxinidir}/django_celery_beat
[testenv:cov]
basepython = python3.5
usedevelop = true
commands =
pip install -U https://github.com/celery/celery/zipball/master#egg=celery
pip install -U https://github.com/celery/kombu/zipball/master#egg=kombu
py.test -x --cov=django_celery_beat --cov-report=xml --no-cov-on-fail