|
@@ -1,5 +1,16 @@
|
|
|
[tox]
|
|
|
-envlist = 2.7,pypy,3.4,3.5,pypy3,flake8,flakeplus,apicheck,configcheck,cov
|
|
|
+envlist =
|
|
|
+ 2.7
|
|
|
+ pypy
|
|
|
+ 3.4
|
|
|
+ 3.5
|
|
|
+ pypy3
|
|
|
+ flake8
|
|
|
+ flakeplus
|
|
|
+ apicheck
|
|
|
+ configcheck
|
|
|
+ pydocstyle
|
|
|
+ cov
|
|
|
|
|
|
[testenv]
|
|
|
deps=
|
|
@@ -11,7 +22,7 @@ deps=
|
|
|
pypy,pypy3: -r{toxinidir}/requirements/test-ci-base.txt
|
|
|
|
|
|
linkcheck,apicheck,configcheck: -r{toxinidir}/requirements/docs.txt
|
|
|
- flake8,flakeplus,pep257: -r{toxinidir}/requirements/pkgutils.txt
|
|
|
+ flake8,flakeplus,pydocstyle -r{toxinidir}/requirements/pkgutils.txt
|
|
|
sitepackages = False
|
|
|
recreate = False
|
|
|
commands = pip install -U -r{toxinidir}/requirements/dev.txt
|
|
@@ -23,7 +34,7 @@ basepython =
|
|
|
3.5: python3.5
|
|
|
pypy: pypy
|
|
|
pypy3: pypy3
|
|
|
- flake8,flakeplus,apicheck,linkcheck,configcheck,pep257,cov: python2.7
|
|
|
+ flake8,flakeplus,apicheck,linkcheck,configcheck,pydocstyle,cov: python2.7
|
|
|
|
|
|
[testenv:cov]
|
|
|
commands =
|
|
@@ -53,6 +64,6 @@ commands =
|
|
|
commands =
|
|
|
flakeplus --2.7 {toxinidir}/celery {toxinidir}/t
|
|
|
|
|
|
-[testenv:pep257]
|
|
|
+[testenv:pydocstyle]
|
|
|
commands =
|
|
|
- pep257 --ignore=D102,D104,D203,D105 celery
|
|
|
+ pydocstyle --ignore=D102,D104,D203,D105 celery
|