2015-08-24 12:17:31 -04:00
|
|
|
[tox]
|
2019-11-07 12:14:13 -05:00
|
|
|
envlist = packaging, py35, py36, py37, py38, check_codestyle, check_isort
|
2015-08-24 12:17:31 -04:00
|
|
|
|
2018-08-13 02:47:46 -04:00
|
|
|
[base]
|
2019-09-12 12:29:55 -04:00
|
|
|
basepython = python3.7
|
2015-08-24 12:17:31 -04:00
|
|
|
deps =
|
|
|
|
mock
|
2015-11-13 11:22:51 -05:00
|
|
|
python-subunit
|
|
|
|
junitxml
|
2018-11-28 04:59:31 -05:00
|
|
|
coverage
|
2019-08-29 08:19:57 -04:00
|
|
|
coverage-enable-subprocess
|
2019-01-17 08:55:37 -05:00
|
|
|
parameterized
|
2016-12-06 06:35:14 -05:00
|
|
|
|
2018-10-30 17:00:31 -04:00
|
|
|
# cyptography 2.2 requires setuptools >= 18.5
|
|
|
|
#
|
|
|
|
# older versions of virtualenv (?) give us a virtualenv with the same
|
|
|
|
# version of setuptools as is installed on the system python (and tox runs
|
|
|
|
# virtualenv under python3, so we get the version of setuptools that is
|
|
|
|
# installed on that).
|
|
|
|
#
|
|
|
|
# anyway, make sure that we have a recent enough setuptools.
|
|
|
|
setuptools>=18.5
|
|
|
|
|
|
|
|
# we also need a semi-recent version of pip, because old ones fail to
|
|
|
|
# install the "enum34" dependency of cryptography.
|
|
|
|
pip>=10
|
|
|
|
|
2015-08-25 10:44:05 -04:00
|
|
|
setenv =
|
2019-04-25 09:52:19 -04:00
|
|
|
# we have a pyproject.toml, but don't want pip to use it for building.
|
|
|
|
# (otherwise we get an error about 'editable mode is not supported for
|
|
|
|
# pyproject.toml-style projects').
|
|
|
|
PIP_USE_PEP517 = false
|
|
|
|
|
2015-08-25 10:44:05 -04:00
|
|
|
PYTHONDONTWRITEBYTECODE = no_byte_code
|
2018-11-28 04:59:31 -05:00
|
|
|
COVERAGE_PROCESS_START = {toxinidir}/.coveragerc
|
2017-09-05 11:35:23 -04:00
|
|
|
|
2018-08-13 02:47:46 -04:00
|
|
|
[testenv]
|
|
|
|
deps =
|
|
|
|
{[base]deps}
|
2018-12-21 09:37:26 -05:00
|
|
|
extras = all
|
2018-08-13 02:47:46 -04:00
|
|
|
|
2018-11-28 04:59:31 -05:00
|
|
|
whitelist_externals =
|
|
|
|
sh
|
|
|
|
|
2018-08-13 02:47:46 -04:00
|
|
|
setenv =
|
|
|
|
{[base]setenv}
|
2019-02-20 02:42:24 -05:00
|
|
|
postgres: SYNAPSE_POSTGRES = 1
|
2019-08-29 08:19:57 -04:00
|
|
|
TOP={toxinidir}
|
2018-08-13 02:47:46 -04:00
|
|
|
|
|
|
|
passenv = *
|
|
|
|
|
2015-08-24 12:17:31 -04:00
|
|
|
commands =
|
2017-09-05 11:35:23 -04:00
|
|
|
/usr/bin/find "{toxinidir}" -name '*.pyc' -delete
|
2018-11-28 04:59:31 -05:00
|
|
|
# Add this so that coverage will run on subprocesses
|
|
|
|
{envbindir}/coverage run "{envbindir}/trial" {env:TRIAL_FLAGS:} {posargs:tests} {env:TOXSUFFIX:}
|
2015-08-24 12:17:31 -04:00
|
|
|
|
2017-09-05 11:35:23 -04:00
|
|
|
# As of twisted 16.4, trial tries to import the tests as a package (previously
|
|
|
|
# it loaded the files explicitly), which means they need to be on the
|
|
|
|
# pythonpath. Our sdist doesn't include the 'tests' package, so normally it
|
|
|
|
# doesn't work within the tox virtualenv.
|
|
|
|
#
|
|
|
|
# As a workaround, we tell tox to do install with 'pip -e', which just
|
|
|
|
# creates a symlink to the project directory instead of unpacking the sdist.
|
|
|
|
#
|
|
|
|
# (An alternative to this would be to set PYTHONPATH to include the project
|
|
|
|
# directory. Note two problems with this:
|
|
|
|
#
|
|
|
|
# - if you set it via `setenv`, then it is also set during the 'install'
|
|
|
|
# phase, which inhibits unpacking the sdist, so the virtualenv isn't
|
|
|
|
# useful for anything else without setting PYTHONPATH similarly.
|
|
|
|
#
|
|
|
|
# - `synapse` is also loaded from PYTHONPATH so even if you only set
|
|
|
|
# PYTHONPATH for the test phase, we're still running the tests against
|
|
|
|
# the working copy rather than the contents of the sdist. So frankly
|
|
|
|
# you might as well use -e in the first place.
|
|
|
|
#
|
|
|
|
# )
|
|
|
|
usedevelop=true
|
|
|
|
|
2018-09-27 09:21:54 -04:00
|
|
|
# A test suite for the oldest supported versions of Python libraries, to catch
|
|
|
|
# any uses of APIs not available in them.
|
2019-06-12 07:31:59 -04:00
|
|
|
[testenv:py35-old]
|
2018-09-27 09:21:54 -04:00
|
|
|
skip_install=True
|
|
|
|
deps =
|
|
|
|
# Old automat version for Twisted
|
|
|
|
Automat == 0.3.0
|
|
|
|
|
|
|
|
mock
|
|
|
|
lxml
|
2019-03-18 13:31:46 -04:00
|
|
|
coverage
|
2019-08-29 08:19:57 -04:00
|
|
|
coverage-enable-subprocess
|
2019-03-18 13:45:45 -04:00
|
|
|
|
2018-09-27 09:21:54 -04:00
|
|
|
commands =
|
|
|
|
/usr/bin/find "{toxinidir}" -name '*.pyc' -delete
|
|
|
|
# Make all greater-thans equals so we test the oldest version of our direct
|
|
|
|
# dependencies, but make the pyopenssl 17.0, which can work against an
|
|
|
|
# OpenSSL 1.1 compiled cryptography (as older ones don't compile on Travis).
|
2019-05-21 10:58:01 -04:00
|
|
|
/bin/sh -c 'python -m synapse.python_dependencies | sed -e "s/>=/==/g" -e "s/psycopg2==2.6//" -e "s/pyopenssl==16.0.0/pyopenssl==17.0.0/" | xargs -d"\n" pip install'
|
2019-03-18 13:31:46 -04:00
|
|
|
|
2019-03-19 08:51:32 -04:00
|
|
|
# Install Synapse itself. This won't update any libraries.
|
2019-03-19 06:28:00 -04:00
|
|
|
pip install -e .
|
2018-09-27 09:21:54 -04:00
|
|
|
|
2019-03-19 06:28:00 -04:00
|
|
|
{envbindir}/coverage run "{envbindir}/trial" {env:TRIAL_FLAGS:} {posargs:tests} {env:TOXSUFFIX:}
|
2019-03-18 13:45:45 -04:00
|
|
|
|
2019-12-03 04:21:25 -05:00
|
|
|
[testenv:benchmark]
|
|
|
|
deps =
|
|
|
|
{[base]deps}
|
|
|
|
pyperf
|
|
|
|
setenv =
|
|
|
|
SYNAPSE_POSTGRES = 1
|
|
|
|
commands =
|
|
|
|
python -m synmark {posargs:}
|
|
|
|
|
2015-08-24 12:17:31 -04:00
|
|
|
[testenv:packaging]
|
2018-12-20 06:33:29 -05:00
|
|
|
skip_install=True
|
2015-08-24 12:17:31 -04:00
|
|
|
deps =
|
|
|
|
check-manifest
|
|
|
|
commands =
|
|
|
|
check-manifest
|
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
[testenv:check_codestyle]
|
2015-10-30 07:15:37 -04:00
|
|
|
skip_install = True
|
2018-10-19 20:16:55 -04:00
|
|
|
basepython = python3.6
|
2015-08-24 12:17:31 -04:00
|
|
|
deps =
|
|
|
|
flake8
|
2020-02-21 07:15:07 -05:00
|
|
|
flake8-comprehensions
|
2019-10-31 11:43:24 -04:00
|
|
|
black==19.10b0 # We pin so that our tests don't start failing on new releases of black.
|
2019-06-20 05:32:02 -04:00
|
|
|
commands =
|
|
|
|
python -m black --check --diff .
|
2019-10-30 07:07:18 -04:00
|
|
|
/bin/sh -c "flake8 synapse tests scripts scripts-dev synctl {env:PEP8SUFFIX:}"
|
2019-10-23 08:22:54 -04:00
|
|
|
{toxinidir}/scripts-dev/config-lint.sh
|
2018-06-25 09:42:27 -04:00
|
|
|
|
2018-07-16 10:03:41 -04:00
|
|
|
[testenv:check_isort]
|
2018-07-16 07:46:49 -04:00
|
|
|
skip_install = True
|
|
|
|
deps = isort
|
2019-10-30 07:17:14 -04:00
|
|
|
commands = /bin/sh -c "isort -c -df -sp setup.cfg -rc synapse tests scripts-dev scripts"
|
2018-06-25 09:42:27 -04:00
|
|
|
|
|
|
|
[testenv:check-newsfragment]
|
|
|
|
skip_install = True
|
|
|
|
deps = towncrier>=18.6.0rc1
|
|
|
|
commands =
|
|
|
|
python -m towncrier.check --compare-with=origin/develop
|
2018-07-16 07:46:49 -04:00
|
|
|
basepython = python3.6
|
2018-11-28 04:59:31 -05:00
|
|
|
|
2019-03-04 12:14:58 -05:00
|
|
|
[testenv:check-sampleconfig]
|
|
|
|
commands = {toxinidir}/scripts-dev/generate_sample_config --check
|
|
|
|
|
2019-08-29 08:19:57 -04:00
|
|
|
[testenv:combine]
|
2018-11-28 04:59:31 -05:00
|
|
|
skip_install = True
|
|
|
|
deps =
|
|
|
|
coverage
|
2019-08-29 08:19:57 -04:00
|
|
|
commands=
|
2018-11-28 04:59:31 -05:00
|
|
|
coverage combine
|
2019-08-29 08:19:57 -04:00
|
|
|
coverage report
|
2019-08-28 07:18:53 -04:00
|
|
|
|
2019-09-12 12:29:55 -04:00
|
|
|
[testenv:cov-erase]
|
|
|
|
skip_install = True
|
|
|
|
deps =
|
|
|
|
coverage
|
|
|
|
commands=
|
|
|
|
coverage erase
|
|
|
|
|
|
|
|
[testenv:cov-html]
|
|
|
|
skip_install = True
|
|
|
|
deps =
|
|
|
|
coverage
|
|
|
|
commands=
|
|
|
|
coverage html
|
|
|
|
|
2019-08-28 07:18:53 -04:00
|
|
|
[testenv:mypy]
|
2019-09-12 12:29:55 -04:00
|
|
|
skip_install = True
|
2019-08-28 07:18:53 -04:00
|
|
|
deps =
|
|
|
|
{[base]deps}
|
2019-12-12 10:21:12 -05:00
|
|
|
mypy==0.750
|
2019-09-12 12:29:55 -04:00
|
|
|
mypy-zope
|
|
|
|
env =
|
|
|
|
MYPYPATH = stubs/
|
2019-08-28 07:18:53 -04:00
|
|
|
extras = all
|
2019-10-31 11:43:24 -04:00
|
|
|
commands = mypy \
|
2020-01-20 12:34:13 -05:00
|
|
|
synapse/api \
|
2020-02-27 06:53:40 -05:00
|
|
|
synapse/appservice \
|
|
|
|
synapse/config \
|
2020-02-14 12:49:40 -05:00
|
|
|
synapse/events/spamcheck.py \
|
2020-02-28 07:31:07 -05:00
|
|
|
synapse/federation/federation_base.py \
|
|
|
|
synapse/federation/federation_client.py \
|
2020-02-07 08:56:38 -05:00
|
|
|
synapse/federation/sender \
|
2020-01-30 11:42:11 -05:00
|
|
|
synapse/federation/transport \
|
2020-03-12 11:36:27 -04:00
|
|
|
synapse/handlers/auth.py \
|
2020-03-26 15:05:26 -04:00
|
|
|
synapse/handlers/cas_handler.py \
|
2020-03-04 11:30:46 -05:00
|
|
|
synapse/handlers/directory.py \
|
2020-02-26 10:33:26 -05:00
|
|
|
synapse/handlers/presence.py \
|
2020-02-03 13:05:44 -05:00
|
|
|
synapse/handlers/sync.py \
|
2019-12-12 09:52:11 -05:00
|
|
|
synapse/handlers/ui_auth \
|
2019-09-12 12:29:55 -04:00
|
|
|
synapse/logging/ \
|
2020-03-19 06:00:24 -04:00
|
|
|
synapse/metrics \
|
2019-12-12 09:52:11 -05:00
|
|
|
synapse/module_api \
|
2020-03-19 06:00:24 -04:00
|
|
|
synapse/push/pusherpool.py \
|
2020-01-14 09:08:06 -05:00
|
|
|
synapse/replication \
|
2020-01-20 12:38:21 -05:00
|
|
|
synapse/rest \
|
2019-12-12 09:52:11 -05:00
|
|
|
synapse/spam_checker_api \
|
|
|
|
synapse/storage/engines \
|
2020-02-27 06:53:40 -05:00
|
|
|
synapse/storage/database.py \
|
2019-12-12 09:52:11 -05:00
|
|
|
synapse/streams
|
|
|
|
|
|
|
|
# To find all folders that pass mypy you run:
|
|
|
|
#
|
|
|
|
# find synapse/* -type d -not -name __pycache__ -exec bash -c "mypy '{}' > /dev/null" \; -print
|