summaryrefslogtreecommitdiff
path: root/tox.ini
blob: eb7036618627fc0d9c53512a988e38ebd9e58c61 (plain)
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
63
# Generated from:
# https://github.com/zopefoundation/meta/tree/master/config/c-code
[tox]
minversion = 3.18
envlist =
    lint
    py27,py27-pure
    py35,py35-pure
    py36,py36-pure
    py37,py37-pure
    py38,py38-pure
    py39,py39-pure
    py310,py310-pure
    py311,py311-pure
    pypy
    pypy3
    docs
    coverage

[testenv]
usedevelop = true
deps =
setenv =
    pure: PURE_PYTHON=1
    !pure-!pypy-!pypy3: PURE_PYTHON=0
commands =
    zope-testrunner --test-path=src {posargs:-vc}
extras =
    test

[testenv:coverage]
basepython = python3
allowlist_externals =
    mkdir
deps =
    coverage
setenv =
    PURE_PYTHON=1
commands =
    mkdir -p {toxinidir}/parts/htmlcov
    coverage run -m zope.testrunner --test-path=src {posargs:-vc}
    coverage html -i
    coverage report -i -m --fail-under=100

[testenv:lint]
basepython = python3
skip_install = true
commands =
    check-manifest
    check-python-versions
deps =
    check-manifest
    check-python-versions >= 0.19.1
    wheel

[testenv:docs]
basepython = python3
skip_install = false
extras =
    docs
commands_pre =
commands =
    sphinx-build -b html -d docs/_build/doctrees docs docs/_build/html