diff options
author | John Mulligan <jmulligan@redhat.com> | 2024-04-10 16:35:31 +0200 |
---|---|---|
committer | John Mulligan <jmulligan@redhat.com> | 2024-04-10 16:35:31 +0200 |
commit | 61eb46adbe431648d0ee6521b0948c2114ec5022 (patch) | |
tree | 44e52766c2337f44255305c60c045666e7bd99a6 /src/cephadm | |
parent | Merge pull request #56577 from nbalacha/wip-nbalacha-code-cleanup (diff) | |
download | ceph-61eb46adbe431648d0ee6521b0948c2114ec5022.tar.xz ceph-61eb46adbe431648d0ee6521b0948c2114ec5022.zip |
cephadm: remove vestigial basepython directives
Remove what I think are vestigial configuration parameters setting
`basepython` in tox.ini. These may have been useful during the change
from python 2 to 3, but I don't see them serving any useful purpose
at this current time. In fact they now interfere with the ability to
globally override the basepython version of all testenv's at once.
So let's just remove them. We can always add it back if we find
an issue in the future (and document it!).
Signed-off-by: John Mulligan <jmulligan@redhat.com>
Diffstat (limited to 'src/cephadm')
-rw-r--r-- | src/cephadm/tox.ini | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/cephadm/tox.ini b/src/cephadm/tox.ini index 86d2c289c76..70e9a411238 100644 --- a/src/cephadm/tox.ini +++ b/src/cephadm/tox.ini @@ -35,7 +35,6 @@ deps = commands=pytest {posargs} [testenv:mypy] -basepython = python3 deps = mypy types-PyYAML @@ -44,7 +43,6 @@ deps = commands = mypy --config-file ../mypy.ini {posargs:cephadm.py cephadmlib} [testenv:flake8] -basepython = python3 allowlist_externals = bash deps = flake8 == 5.0.4 |