|
@@ -1,5 +1,5 @@
|
|
|
[tox]
|
|
|
-envlist = 2.7,pypy,3.4,3.5,pypy3,flake8,flakeplus
|
|
|
+envlist = 2.7,pypy,3.4,3.5,pypy3,flake8,flakeplus,apicheck
|
|
|
|
|
|
[testenv]
|
|
|
deps=
|
|
@@ -10,33 +10,35 @@ deps=
|
|
|
3.4,3.5: -r{toxinidir}/requirements/test-ci-default.txt
|
|
|
pypy,pypy3: -r{toxinidir}/requirements/test-ci-base.txt
|
|
|
|
|
|
+ linkcheck,apicheck: -r{toxinidir}/requirements/docs.txt
|
|
|
+ flake8,flakeplus: -r{toxinidir}/requirements/pkgutils.txt
|
|
|
sitepackages = False
|
|
|
recreate = False
|
|
|
-commands = {toxinidir}/extra/release/removepyc.sh {toxinidir}
|
|
|
- pip install -U -r{toxinidir}/requirements/dev.txt
|
|
|
+commands = pip install -U -r{toxinidir}/requirements/dev.txt
|
|
|
nosetests -xsv --with-coverage \
|
|
|
--cover-inclusive --cover-min-percentage=94 --cover-erase []
|
|
|
|
|
|
basepython =
|
|
|
- 2.7: python2.7
|
|
|
+ 2.7,flake8,flakeplus,linkcheck,apicheck python2.7
|
|
|
3.4: python3.4
|
|
|
3.5: python3.5
|
|
|
pypy: pypy
|
|
|
pypy3: pypy3
|
|
|
- docs,flake8,flakeplus: python2.7
|
|
|
|
|
|
-[testenv:docs]
|
|
|
-deps = -r{toxinidir}/requirements/docs.txt
|
|
|
+[testenv:apicheck]
|
|
|
+commands =
|
|
|
+ pip install -U -r{toxinidir}/requirements/dev.txt
|
|
|
+ sphinx-build -W -b apicheck -d {envtmpdir}/doctrees docs docs/_build/apicheck
|
|
|
+
|
|
|
+[testenv:linkcheck]
|
|
|
commands =
|
|
|
pip install -U -r{toxinidir}/requirements/dev.txt
|
|
|
sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees docs docs/_build/linkcheck
|
|
|
|
|
|
[testenv:flake8]
|
|
|
-deps = -r{toxinidir}/requirements/pkgutils.txt
|
|
|
commands =
|
|
|
flake8 {toxinidir}/celery
|
|
|
|
|
|
[testenv:flakeplus]
|
|
|
-deps = -r{toxinidir}/requirements/pkgutils.txt
|
|
|
commands =
|
|
|
- flakeplus --2.6 {toxinidir}/celery
|
|
|
+ flakeplus --2.7 {toxinidir}/celery
|