forked from pallets/werkzeug
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tox.ini
69 lines (57 loc) · 1.38 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
63
64
65
66
67
68
69
[tox]
envlist =
py{36,27}-hypothesis-uwsgi
py{35,34,py}
stylecheck
docs-html
coverage-report
[testenv]
passenv = LANG
setenv =
TOX_ENVTMPDIR={envtmpdir}
deps =
pytest
pytest-xprocess
coverage
requests
pyopenssl
greenlet
redis
python-memcached
watchdog
hypothesis: hypothesis
uwsgi: uwsgi
whitelist_externals =
redis-server
memcached
uwsgi
commands =
coverage run -p -m pytest []
hypothesis: coverage run -p -m pytest [] tests/hypothesis
uwsgi: uwsgi --pyrun {envbindir}/coverage --pyargv 'run -p -m pytest -kUWSGI' --cache2=name=werkzeugtest,items=20 --master
# --pyrun doesn't pass pytest exit code up, so check for a marker
uwsgi: python -c 'import os, sys; sys.exit(os.path.exists("{envtmpdir}/test_uwsgi_failed"))'
[testenv:stylecheck]
deps = flake8
commands = flake8 []
[testenv:docs-html]
deps = sphinx==1.6.7
commands = sphinx-build -W -b html -d {envtmpdir}/doctrees docs docs/_build/html
[testenv:docs-linkcheck]
deps = sphinx
commands = sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees docs docs/_build/linkcheck
[testenv:coverage-report]
deps = coverage
skip_install = true
commands =
coverage combine
coverage report
coverage html
[testenv:codecov]
passenv = CI TRAVIS TRAVIS_*
deps = codecov
skip_install = true
commands =
coverage combine
coverage report
codecov