diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2020-09-23 06:45:37 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-23 11:45:37 +0100 |
commit | bbde4038dff379fdf48b914782a73a6889135a56 (patch) | |
tree | cd0cef18ce974f4128bc4999e39f8355d68e39c9 /tox.ini | |
parent | Add note to reverse_proxy.md about disabling Apache's mod_security2 (#8375) (diff) | |
download | synapse-bbde4038dff379fdf48b914782a73a6889135a56.tar.xz |
Do not check lint/test dependencies at runtime. (#8377)
moves non-runtime dependencies out of synapse.python_dependencies (test and lint)
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/tox.ini b/tox.ini index ddcab0198f..4d132eff4c 100644 --- a/tox.ini +++ b/tox.ini @@ -2,13 +2,12 @@ envlist = packaging, py35, py36, py37, py38, check_codestyle, check_isort [base] +extras = test deps = - mock python-subunit junitxml coverage coverage-enable-subprocess - parameterized # cyptography 2.2 requires setuptools >= 18.5 # @@ -36,7 +35,7 @@ setenv = [testenv] deps = {[base]deps} -extras = all +extras = all, test whitelist_externals = sh @@ -84,7 +83,6 @@ deps = # Old automat version for Twisted Automat == 0.3.0 - mock lxml coverage coverage-enable-subprocess @@ -97,7 +95,7 @@ commands = /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' # Install Synapse itself. This won't update any libraries. - pip install -e . + pip install -e ".[test]" {envbindir}/coverage run "{envbindir}/trial" {env:TRIAL_FLAGS:} {posargs:tests} {env:TOXSUFFIX:} |