2015-08-24 18:17:31 +02:00
|
|
|
[tox]
|
2020-10-28 00:24:33 +01:00
|
|
|
envlist = packaging, py35, py36, py37, py38, py39, check_codestyle, check_isort
|
2015-08-24 18:17:31 +02:00
|
|
|
|
2018-08-13 08:47:46 +02:00
|
|
|
[base]
|
2015-08-24 18:17:31 +02:00
|
|
|
deps =
|
2015-11-13 17:22:51 +01:00
|
|
|
python-subunit
|
|
|
|
junitxml
|
2018-11-28 10:59:31 +01:00
|
|
|
coverage
|
2020-12-17 23:58:00 +01:00
|
|
|
|
|
|
|
# this is pinned since it's a bit of an obscure package.
|
|
|
|
coverage-enable-subprocess==1.0
|
2016-12-06 12:35:14 +01:00
|
|
|
|
2018-10-30 22:00:31 +01: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
|
|
|
|
|
2021-01-08 15:08:44 +01:00
|
|
|
# directories/files we run the linters on
|
|
|
|
lint_targets =
|
|
|
|
setup.py
|
|
|
|
synapse
|
|
|
|
tests
|
|
|
|
scripts
|
|
|
|
scripts-dev
|
|
|
|
stubs
|
|
|
|
contrib
|
|
|
|
synctl
|
|
|
|
synmark
|
|
|
|
.buildkite
|
|
|
|
docker
|
|
|
|
|
2021-01-07 12:41:54 +01:00
|
|
|
# default settings for all tox environments
|
2018-08-13 08:47:46 +02:00
|
|
|
[testenv]
|
|
|
|
deps =
|
|
|
|
{[base]deps}
|
2021-01-07 12:41:54 +01:00
|
|
|
extras =
|
|
|
|
# install the optional dependendencies for tox environments without
|
|
|
|
# '-noextras' in their name
|
|
|
|
!noextras: all
|
|
|
|
test
|
2018-08-13 08:47:46 +02:00
|
|
|
|
|
|
|
setenv =
|
2020-12-17 23:58:00 +01:00
|
|
|
# use a postgres db for tox environments with "-postgres" in the name
|
|
|
|
# (see https://tox.readthedocs.io/en/3.20.1/config.html#factors-and-factor-conditional-settings)
|
2019-02-20 08:42:24 +01:00
|
|
|
postgres: SYNAPSE_POSTGRES = 1
|
2020-12-17 23:58:00 +01:00
|
|
|
|
|
|
|
# this is used by .coveragerc to refer to the top of our tree.
|
2019-08-29 14:19:57 +02:00
|
|
|
TOP={toxinidir}
|
2018-08-13 08:47:46 +02:00
|
|
|
|
|
|
|
passenv = *
|
|
|
|
|
2015-08-24 18:17:31 +02:00
|
|
|
commands =
|
2020-12-17 23:58:00 +01:00
|
|
|
# the "env" invocation enables coverage checking for sub-processes. This is
|
|
|
|
# particularly important when running trial with `-j`, since that will make
|
|
|
|
# it run tests in a subprocess, whose coverage would otherwise not be
|
|
|
|
# tracked. (It also makes an explicit `coverage run` command redundant.)
|
|
|
|
#
|
|
|
|
# (See https://coverage.readthedocs.io/en/coverage-5.3/subprocess.html.
|
|
|
|
# Note that the `coverage.process_startup()` call is done by
|
|
|
|
# `coverage-enable-subprocess`.)
|
|
|
|
#
|
|
|
|
# we use "env" rather than putting a value in `setenv` so that it is not
|
|
|
|
# inherited by other tox environments.
|
|
|
|
#
|
|
|
|
# keep this in sync with the copy in `testenv:py35-old`.
|
|
|
|
#
|
|
|
|
/usr/bin/env COVERAGE_PROCESS_START={toxinidir}/.coveragerc "{envbindir}/trial" {env:TRIAL_FLAGS:} {posargs:tests} {env:TOXSUFFIX:}
|
2015-08-24 18:17:31 +02:00
|
|
|
|
2017-09-05 17:35:23 +02: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 15:21:54 +02: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 13:31:59 +02:00
|
|
|
[testenv:py35-old]
|
2018-09-27 15:21:54 +02:00
|
|
|
skip_install=True
|
|
|
|
deps =
|
2021-01-18 15:35:42 +01:00
|
|
|
# Ensure a version of setuptools that supports Python 3.5 is installed.
|
|
|
|
setuptools < 51.0.0
|
|
|
|
|
2018-09-27 15:21:54 +02:00
|
|
|
# Old automat version for Twisted
|
|
|
|
Automat == 0.3.0
|
|
|
|
|
|
|
|
lxml
|
2019-03-18 18:31:46 +01:00
|
|
|
coverage
|
2020-12-17 23:58:00 +01:00
|
|
|
coverage-enable-subprocess==1.0
|
2019-03-18 18:45:45 +01:00
|
|
|
|
2018-09-27 15:21:54 +02:00
|
|
|
commands =
|
|
|
|
# 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 16:58:01 +02: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 18:31:46 +01:00
|
|
|
|
2019-03-19 13:51:32 +01:00
|
|
|
# Install Synapse itself. This won't update any libraries.
|
2020-09-23 12:45:37 +02:00
|
|
|
pip install -e ".[test]"
|
2018-09-27 15:21:54 +02:00
|
|
|
|
2020-12-17 23:58:00 +01:00
|
|
|
# we have to duplicate the command from `testenv` rather than refer to it
|
|
|
|
# as `{[testenv]commands}`, because we run on ubuntu xenial, which has
|
|
|
|
# tox 2.3.1, and https://github.com/tox-dev/tox/issues/208.
|
|
|
|
#
|
|
|
|
/usr/bin/env COVERAGE_PROCESS_START={toxinidir}/.coveragerc "{envbindir}/trial" {env:TRIAL_FLAGS:} {posargs:tests} {env:TOXSUFFIX:}
|
2019-03-18 18:45:45 +01:00
|
|
|
|
2019-12-03 10:21:25 +01:00
|
|
|
[testenv:benchmark]
|
|
|
|
deps =
|
|
|
|
{[base]deps}
|
|
|
|
pyperf
|
|
|
|
setenv =
|
|
|
|
SYNAPSE_POSTGRES = 1
|
|
|
|
commands =
|
|
|
|
python -m synmark {posargs:}
|
|
|
|
|
2015-08-24 18:17:31 +02:00
|
|
|
[testenv:packaging]
|
2018-12-20 12:33:29 +01:00
|
|
|
skip_install=True
|
2015-08-24 18:17:31 +02:00
|
|
|
deps =
|
|
|
|
check-manifest
|
|
|
|
commands =
|
|
|
|
check-manifest
|
|
|
|
|
2019-06-20 11:32:02 +02:00
|
|
|
[testenv:check_codestyle]
|
2020-09-17 22:45:22 +02:00
|
|
|
extras = lint
|
2019-06-20 11:32:02 +02:00
|
|
|
commands =
|
2021-01-08 15:08:44 +01:00
|
|
|
python -m black --check --diff {[base]lint_targets}
|
|
|
|
flake8 {[base]lint_targets} {env:PEP8SUFFIX:}
|
2019-10-23 14:22:54 +02:00
|
|
|
{toxinidir}/scripts-dev/config-lint.sh
|
2018-06-25 15:42:27 +02:00
|
|
|
|
2018-07-16 16:03:41 +02:00
|
|
|
[testenv:check_isort]
|
2020-09-17 22:45:22 +02:00
|
|
|
extras = lint
|
2021-01-08 15:08:44 +01:00
|
|
|
commands = isort -c --df --sp setup.cfg {[base]lint_targets}
|
2018-06-25 15:42:27 +02:00
|
|
|
|
|
|
|
[testenv:check-newsfragment]
|
|
|
|
skip_install = True
|
|
|
|
deps = towncrier>=18.6.0rc1
|
|
|
|
commands =
|
|
|
|
python -m towncrier.check --compare-with=origin/develop
|
2018-11-28 10:59:31 +01:00
|
|
|
|
2019-03-04 18:14:58 +01:00
|
|
|
[testenv:check-sampleconfig]
|
|
|
|
commands = {toxinidir}/scripts-dev/generate_sample_config --check
|
|
|
|
|
2019-08-29 14:19:57 +02:00
|
|
|
[testenv:combine]
|
2018-11-28 10:59:31 +01:00
|
|
|
skip_install = True
|
|
|
|
deps =
|
|
|
|
coverage
|
2019-08-29 14:19:57 +02:00
|
|
|
commands=
|
2018-11-28 10:59:31 +01:00
|
|
|
coverage combine
|
2019-08-29 14:19:57 +02:00
|
|
|
coverage report
|
2019-08-28 13:18:53 +02:00
|
|
|
|
2019-09-12 18:29:55 +02: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 13:18:53 +02:00
|
|
|
[testenv:mypy]
|
|
|
|
deps =
|
|
|
|
{[base]deps}
|
2020-10-20 13:55:21 +02:00
|
|
|
extras = all,mypy
|
2020-08-26 15:59:37 +02:00
|
|
|
commands = mypy
|