1 files changed, 0 insertions, 38 deletions
diff --git a/tox.ini b/tox.ini
index 04b972e2c5..3ffd2c3e97 100644
--- a/tox.ini
+++ b/tox.ini
@@ -38,21 +38,10 @@ lint_targets =
setup.py
synapse
tests
- scripts
# annoyingly, black doesn't find these so we have to list them
- scripts/export_signing_key
- scripts/generate_config
- scripts/generate_log_config
- scripts/hash_password
- scripts/register_new_matrix_user
- scripts/synapse_port_db
- scripts/update_synapse_database
scripts-dev
- scripts-dev/build_debian_packages
- scripts-dev/sign_json
stubs
contrib
- synctl
synmark
.ci
docker
@@ -162,38 +151,11 @@ extras = lint
commands =
python -m black --check --diff {[base]lint_targets}
flake8 {[base]lint_targets} {env:PEP8SUFFIX:}
- {toxinidir}/scripts-dev/config-lint.sh
[testenv:check_isort]
extras = lint
commands = isort -c --df {[base]lint_targets}
-[testenv:combine]
-skip_install = true
-usedevelop = false
-deps =
- coverage
- pip>=10
-commands=
- coverage combine
- coverage report
-
-[testenv:cov-erase]
-skip_install = true
-usedevelop = false
-deps =
- coverage
-commands=
- coverage erase
-
-[testenv:cov-html]
-skip_install = true
-usedevelop = false
-deps =
- coverage
-commands=
- coverage html
-
[testenv:mypy]
deps =
{[base]deps}
|