From: Kefu Chai Date: Thu, 8 Dec 2022 16:32:26 +0000 (+0800) Subject: cmake: temporarily disable py3 test X-Git-Tag: v18.1.0~707^2~1 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=da40d8464013812e7d9e4e653eb5179ef3841394;p=ceph-ci.git cmake: temporarily disable py3 test py3 tries to import all python modules to ensure that they are python3 compatible. but the installation fails on jenkins test node: Resolved https://github.com/ceph/teuthology.git to commit 4da97cf64e542f347ec47b7bdbe5eca99759f9b7 Installing build dependencies: started error: subprocess-exited-with-error Signed-off-by: Kefu Chai --- diff --git a/qa/CMakeLists.txt b/qa/CMakeLists.txt index b8d4872ac0e..a8726141bc4 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 deadsymlinks) + add_tox_test(qa TOX_ENVS flake8 mypy deadsymlinks) endif()