summary refs log tree commit diff
path: root/setup.cfg
diff options
context:
space:
mode:
authorDavid Robertson <davidr@element.io>2022-02-22 14:52:56 +0000
committerGitHub <noreply@github.com>2022-02-22 14:52:56 +0000
commit94a396e7c4b4488d7f0ca08672114a4a586cf42c (patch)
tree2963315af0c75ce6fbb73f43d74ea5335b763f71 /setup.cfg
parentCap the number of in-flight requests for state from a single group (#11608) (diff)
downloadsynapse-94a396e7c4b4488d7f0ca08672114a4a586cf42c.tar.xz
Prune setup.cfg some more (#12059)
* Remove `trial` section from setup.cfg

This was added in the initial commit from 2014. I can't see that it does
anything. Maybe it's there so that you can run `trial` without any extra
args, but if I do that then I just get the `--help` message.

* Move flake8's config to its own file
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg12
1 files changed, 0 insertions, 12 deletions
diff --git a/setup.cfg b/setup.cfg
index a0506572d9..6213f3265b 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,6 +1,3 @@
-[trial]
-test_suite = tests
-
 [check-manifest]
 ignore =
     .git-blame-ignore-revs
@@ -10,12 +7,3 @@ ignore =
     pylint.cfg
     tox.ini
 
-[flake8]
-# see https://pycodestyle.readthedocs.io/en/latest/intro.html#error-codes
-# for error codes. The ones we ignore are:
-#  W503: line break before binary operator
-#  W504: line break after binary operator
-#  E203: whitespace before ':' (which is contrary to pep8?)
-#  E731: do not assign a lambda expression, use a def
-#  E501: Line too long (black enforces this for us)
-ignore=W503,W504,E203,E731,E501