2015-08-24 12:17:31 -04:00
|
|
|
[tox]
|
|
|
|
envlist = packaging, py27, pep8
|
|
|
|
|
|
|
|
[testenv]
|
|
|
|
deps =
|
|
|
|
coverage
|
|
|
|
Twisted>=15.1
|
|
|
|
mock
|
2015-08-25 10:44:05 -04:00
|
|
|
setenv =
|
|
|
|
PYTHONDONTWRITEBYTECODE = no_byte_code
|
2015-08-24 12:17:31 -04:00
|
|
|
commands =
|
2015-08-26 07:45:29 -04:00
|
|
|
coverage run --source=synapse {envbindir}/trial {posargs:tests}
|
2015-08-24 12:17:31 -04:00
|
|
|
coverage report -m
|
|
|
|
|
|
|
|
[testenv:packaging]
|
|
|
|
deps =
|
|
|
|
check-manifest
|
|
|
|
commands =
|
|
|
|
check-manifest
|
|
|
|
|
|
|
|
[testenv:pep8]
|
2015-10-30 07:15:37 -04:00
|
|
|
skip_install = True
|
2015-08-24 12:17:31 -04:00
|
|
|
basepython = python2.7
|
|
|
|
deps =
|
|
|
|
flake8
|
|
|
|
commands = flake8 synapse
|