From: Kefu Chai Date: Wed, 21 Jul 2021 02:56:21 +0000 (+0800) Subject: cmake: drop "mypy" from tox envlist of "qa" X-Git-Tag: v17.1.0~1345^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F42430%2Fhead;p=ceph.git cmake: drop "mypy" from tox envlist of "qa" this change partially reverts 81305b0da9a3e04633c022b12644e2975aa46a0d, otherwise we have following errors: tasks/vstart_runner.py:691: error: Definition of "_run_python" in base class "LocalCephFSMount" is incompatible with definition in base class "CephFSMount" tasks/vstart_runner.py:705: error: Definition of "_run_python" in base class "LocalCephFSMount" is incompatible with definition in base class "CephFSMount" Signed-off-by: Kefu Chai --- diff --git a/qa/CMakeLists.txt b/qa/CMakeLists.txt index 884c41e4bbaf..fd95d83833b3 100644 --- a/qa/CMakeLists.txt +++ b/qa/CMakeLists.txt @@ -5,5 +5,5 @@ endif() if(WITH_TESTS) include(AddCephTest) - add_tox_test(qa TOX_ENVS py3 flake8 mypy) + add_tox_test(qa TOX_ENVS py3 flake8) endif()