forked from twisted/twisted
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
47 lines (36 loc) · 1.46 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
; tox configuration file for running tests similar to buildbot builders.
[tox]
toxworkdir=build/
envlist=
{py27,py33,py34}-{tests,nomodules}
{py27,py33,py34}-coverage
pyflakes,twistedchecker,apidocs,narrativedocs
skipsdist=True
[testenv]
skip_install=True
deps =
; zope.interface is love, zope.interface is life
zope.interface
; Some relatively standard dependencies that we want to have
; We cannot use extras here, because it is not supported on Py3
{tests,coverage}: pyopenssl
{tests,coverage}: service_identity
{tests,coverage}: pycrypto
coverage: coverage
; Code quality checkers
pyflakes: pyflakes
twistedchecker: twistedchecker
; Documentation
apidocs: pydoctor
narrativedocs: sphinx
commands =
py27-{tests,nomodules}: {toxinidir}/bin/trial {posargs:twisted}
{py33,py34}-{tests,nomodules}: {toxinidir}/admin/run-python3-tests {posargs:}
twistedchecker: twistedchecker {posargs:twisted}
pyflakes: pyflakes {toxinidir}/{posargs:twisted}
apidocs: {toxinidir}/bin/admin/build-apidocs {toxinidir} apidocs
narrativedocs: sphinx-build -aW -b html -d {toxinidir}/docs/_build docs {toxinidir}/docs/_build/
coverage: coverage erase
py27-coverage: coverage run {toxinidir}/bin/trial --reporter=bwverbose {posargs:twisted}
{py33,py34}-coverage: coverage run {toxinidir}/admin/run-python3-tests --reporter=bwverbose {posargs:}
coverage: coverage report