Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Make tox actions work on Debian 10 #7703

Merged
merged 1 commit into from
Jun 25, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.d/7703.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Make Tox actions work on Debian 10.
6 changes: 2 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
envlist = packaging, py35, py36, py37, py38, check_codestyle, check_isort

[base]
basepython = python3.7
deps =
mock
python-subunit
Expand Down Expand Up @@ -120,11 +119,11 @@ commands =

[testenv:check_codestyle]
skip_install = True
basepython = python3.6
deps =
flake8
flake8-comprehensions
black==19.10b0 # We pin so that our tests don't start failing on new releases of black.
# We pin so that our tests don't start failing on new releases of black.
black==19.10b0
commands =
python -m black --check --diff .
/bin/sh -c "flake8 synapse tests scripts scripts-dev synctl {env:PEP8SUFFIX:}"
Expand All @@ -140,7 +139,6 @@ skip_install = True
deps = towncrier>=18.6.0rc1
commands =
python -m towncrier.check --compare-with=origin/develop
basepython = python3.6

[testenv:check-sampleconfig]
commands = {toxinidir}/scripts-dev/generate_sample_config --check
Expand Down