-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathtox.ini
59 lines (42 loc) · 1.05 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
[tox]
envlist = coverage-clean,py2,py3,flake8,manifest,docs,readme,coverage-report
[pytest]
minversion = 2.8
addopts = -ra
testpaths = tests
[testenv]
deps = -rrequirements-dev.txt
commands = coverage run --parallel -m pytest {posargs}
passenv = http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY
[testenv:flake8]
deps = flake8
commands = flake8 src tests setup.py
[testenv:docs]
setenv =
PYTHONHASHSEED = 313
deps =
sphinx
cryptography
asn1crypto
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
python -m doctest README.rst
[testenv:manifest]
deps = check-manifest
skip_install = true
commands = check-manifest
[testenv:readme]
deps = readme_renderer
skip_install = true
commands = python setup.py check -r -s
[testenv:coverage-clean]
deps = coverage
skip_install = true
commands = coverage erase
[testenv:coverage-report]
deps = coverage
skip_install = true
commands =
coverage combine
coverage report