1 files changed, 7 insertions, 4 deletions
diff --git a/tox.ini b/tox.ini
index 595ab3ba66..17da8adbb1 100644
--- a/tox.ini
+++ b/tox.ini
@@ -113,14 +113,14 @@ commands =
[testenv:packaging]
skip_install=True
deps =
- check-manifest
+ check-manifest==0.41
commands =
check-manifest
[testenv:check_codestyle]
skip_install = True
deps =
- flake8
+ flake8==3.8.3
flake8-comprehensions
# We pin so that our tests don't start failing on new releases of black.
black==19.10b0
@@ -138,7 +138,8 @@ commands = /bin/sh -c "isort -c --df --sp setup.cfg synapse tests scripts-dev sc
skip_install = True
deps = towncrier>=18.6.0rc1
commands =
- python -m towncrier.check --compare-with=origin/develop
+ python -m towncrier.check --compare-with=origin/dinsic
+basepython = python3.6
[testenv:check-sampleconfig]
commands = {toxinidir}/scripts-dev/generate_sample_config --check
@@ -202,10 +203,12 @@ commands = mypy \
synapse/push/push_rule_evaluator.py \
synapse/replication \
synapse/rest \
+ synapse/server_notices \
synapse/spam_checker_api \
- synapse/storage/data_stores/main/ui_auth.py \
+ synapse/storage/databases/main/ui_auth.py \
synapse/storage/database.py \
synapse/storage/engines \
+ synapse/storage/state.py \
synapse/storage/util \
synapse/streams \
synapse/util/caches/stream_change_cache.py \
|