forked from zopefoundation/zope.annotation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
62 lines (57 loc) · 1.03 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
[tox]
envlist =
py27,
py33,
py34,
py35,
py36,
pypy,
pypy3,
nobtree,
nobtree3,
docs,
coverage,
[testenv]
commands =
coverage run -m zope.testrunner --test-path=src {posargs:-vc}
deps =
.[btrees,test]
zope.testrunner
coverage
setenv =
COVERAGE_FILE=.coverage.{envname}
[testenv:nobtree]
basepython =
python2.7
deps =
.[test]
zope.testrunner
coverage
[testenv:nobtree3]
basepython =
python3.6
deps =
.[test]
zope.testrunner
coverage
[testenv:docs]
basepython =
python2.7
commands =
sphinx-build -b html -d docs/_build/doctrees docs docs/_build/html
coverage run {envbindir}/sphinx-build -b doctest -d docs/_build/doctrees docs docs/_build/doctest
deps =
.[docs]
coverage
[testenv:coverage]
basepython = python2.7
deps = coverage
setenv =
COVERAGE_FILE=.coverage
skip_install = true
commands =
coverage erase
coverage combine
coverage html
coverage xml
coverage report --show-missing --skip-covered --fail-under=100