From: John Mulligan Date: Thu, 25 Aug 2022 13:58:55 +0000 (-0400) Subject: pybind/mgr: tox.ini remove redundant `tox` env X-Git-Tag: v18.0.0~153^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F47808%2Fhead;p=ceph.git pybind/mgr: tox.ini remove redundant `tox` env Fixes: https://tracker.ceph.com/issues/57153 The envlist contained an environment named `lint`. There was no specific customization of the lint testenv so it is essentially the same as running the `py3` testenv. This was probably a typo and was meant to be `pylint`. Unfortunately, the pylint test env does not appear to work, probably because it was never run as part of any automation. At the risk of leaving old stuff behind I'm not removing the pylint testenv at the moment, only the `lint` item in order to not run redundant tests. Signed-off-by: John Mulligan --- diff --git a/src/pybind/mgr/tox.ini b/src/pybind/mgr/tox.ini index 3426ae287357..bf1849157569 100644 --- a/src/pybind/mgr/tox.ini +++ b/src/pybind/mgr/tox.ini @@ -2,7 +2,6 @@ envlist = py3, py37, - lint, mypy, fix flake8