forked from celery/sphinx_celery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
36 lines (29 loc) · 845 Bytes
/
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
[tox]
envlist = 2.7,pypy,3.7,3.6,3.5,pypy3,flake8,flakeplus
[testenv]
deps=
-r{toxinidir}/requirements/test.txt
sitepackages = False
recreate = False
commands = {toxinidir}/extra/release/removepyc.sh {toxinidir}
nosetests -xsv --with-coverage \
--cover-inclusive --cover-erase []
basepython =
2.7: python2.7
3.7: python3.7
3.6: python3.6
3.5: python3.5
pypy: pypy
pypy3: pypy3
[testenv:docs]
deps = -r{toxinidir}/requirements/docs.txt
commands =
sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees docs docs/_build/linkcheck
[testenv:flake8]
deps = -r{toxinidir}/requirements/pkgutils.txt
commands =
flake8 --ignore=X999 {toxinidir}/sphinx_celery
[testenv:flakeplus]
deps = -r{toxinidir}/requirements/pkgutils.txt
commands =
flakeplus --2.7 {toxinidir}/spinx_celery