-
Notifications
You must be signed in to change notification settings - Fork 7
/
tox.ini
45 lines (37 loc) · 1.28 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
[tox]
envlist = 2.7,pypy,3.4,3.5,pypy3,flake8,flakeplus,apicheck,configcheck
[testenv]
deps=
-r{toxinidir}/requirements/default.txt
-r{toxinidir}/requirements/test.txt
-r{toxinidir}/requirements/test-ci.txt
linkcheck,apicheck: -r{toxinidir}/requirements/docs.txt
flake8,flakeplus: -r{toxinidir}/requirements/pkgutils.txt
sitepackages = False
recreate = False
commands = nosetests -xsv --with-coverage \
--cover-inclusive --cover-min-percentage=90 --cover-erase []
basepython =
2.7,flake8,flakeplus,apicheck,linkcheck,configcheck: python2.7
3.4: python3.4
3.5: python3.5
pypy: pypy
pypy3: pypy3
[testenv:apicheck]
commands =
pip install -U -r{toxinidir}/requirements/dev.txt
sphinx-build -W -b apicheck -d {envtmpdir}/doctrees docs docs/_build/apicheck
[testenv:configcheck]
commands =
pip install -U -r{toxinidir}/requirements/dev.txt
sphinx-build -W -b configcheck -d {envtmpdir}/doctrees docs docs/_build/configcheck
[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]
commands =
flake8 --ignore=X999 {toxinidir}/cyanide
[testenv:flakeplus]
commands =
flakeplus --2.7 {toxinidir}/cyanide