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