summaryrefslogtreecommitdiff
path: root/tox.ini
blob: 040fa6481f92a97dc1ca1967f20f9044034bafa9 (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
[tox]
envlist = coverage-clean,{py27,py34,py35,pypy}-{pyopenssl015,pyopenssl014}-{idna,noidna},flake8,manifest,readme,coverage-report

[testenv]
deps =
    coverage
    pytest
    idna: idna
    pyopenssl014: pyOpenSSL==0.14
    pyopenssl015: pyOpenSSL==0.15.1
passenv = LDFLAGS CFLAGS CPPFLAGS
setenv =
    PYTHONHASHSEED = 0
    noidna: TRICKING_TOX = 1
commands =
    coverage run --parallel-mode -m pytest {posargs}
    py35-pyopenssl015-idna: coverage run --parallel-mode -m pytest --doctest-modules --doctest-glob='*.rst' {posargs}


[testenv:flake8]
basepython = python3.5
deps = flake8
commands = flake8 setup.py src tests


[testenv:docs]
basepython = python3.5
deps = sphinx
commands =
    sphinx-build -W -b html -d {envtmpdir}/doctrees docs docs/_build/html
    sphinx-build -W -b doctest -d {envtmpdir}/doctrees docs docs/_build/html


[testenv:manifest]
basepython = python3.5
deps = check-manifest
commands = check-manifest


[testenv:readme]
basepython = python3.5
deps = readme_renderer
skip_install = true
commands = python setup.py check -r -s


[testenv:coverage-clean]
basepython = python3.5
deps = coverage
skip_install = true
commands = coverage erase


[testenv:coverage-report]
basepython = python3.5
deps = coverage
skip_install = true
commands =
    coverage combine
    coverage report