From f12aa75ea0e0ad56b247d906fe77ed2cbbd3af80 Mon Sep 17 00:00:00 2001 From: John Mulligan Date: Thu, 25 Aug 2022 09:58:55 -0400 Subject: [PATCH] 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 --- src/pybind/mgr/tox.ini | 1 - 1 file changed, 1 deletion(-) 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 -- 2.47.3