From 286e46578dcf35ab096dd242338f3751c248683c Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Wed, 21 Jul 2021 10:56:21 +0800 Subject: [PATCH] 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 --- qa/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/CMakeLists.txt b/qa/CMakeLists.txt index 884c41e4bbafe..fd95d83833b3c 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() -- 2.39.5