diff options
author | Andrew Morgan <andrew@amorgan.xyz> | 2020-03-16 15:36:03 +0000 |
---|---|---|
committer | Andrew Morgan <andrew@amorgan.xyz> | 2020-03-16 15:36:03 +0000 |
commit | 057e4348a29a0e65b04ca2fe2f440fb83048bb4d (patch) | |
tree | 34836733102de895f3496b232e4051fac64ca794 | |
parent | Handle FileNotFound error in checking git repository version (#6284) (diff) | |
parent | Remove redundant arguments to CI's flake8 (#6277) (diff) | |
download | synapse-057e4348a29a0e65b04ca2fe2f440fb83048bb4d.tar.xz |
Remove redundant arguments to CI's flake8 (#6277)
* commit '9178ac1b6': Remove redundant arguments to CI's flake8 (#6277)
-rw-r--r-- | changelog.d/6277.misc | 1 | ||||
-rw-r--r-- | tox.ini | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/changelog.d/6277.misc b/changelog.d/6277.misc new file mode 100644 index 0000000000..490713577f --- /dev/null +++ b/changelog.d/6277.misc @@ -0,0 +1 @@ +Remove redundant CLI parameters on CI's `flake8` step. \ No newline at end of file diff --git a/tox.ini b/tox.ini index 11ecb2d26c..e8db44c18c 100644 --- a/tox.ini +++ b/tox.ini @@ -117,7 +117,7 @@ deps = black==19.3b0 # We pin so that our tests don't start failing on new releases of black. commands = python -m black --check --diff . - /bin/sh -c "flake8 synapse tests scripts scripts-dev scripts/hash_password scripts/register_new_matrix_user scripts/synapse_port_db synctl {env:PEP8SUFFIX:}" + /bin/sh -c "flake8 synapse tests scripts scripts-dev synctl {env:PEP8SUFFIX:}" {toxinidir}/scripts-dev/config-lint.sh [testenv:check_isort] |