mirror of
https://github.com/ceph/ceph
synced 2024-12-13 15:08:33 +00:00
da40d84640
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 <tchaikov@gmail.com>
10 lines
227 B
CMake
10 lines
227 B
CMake
set(CEPH_BUILD_VIRTUALENV $ENV{TMPDIR})
|
|
if(NOT CEPH_BUILD_VIRTUALENV)
|
|
set(CEPH_BUILD_VIRTUALENV ${CMAKE_BINARY_DIR})
|
|
endif()
|
|
|
|
if(WITH_TESTS)
|
|
include(AddCephTest)
|
|
add_tox_test(qa TOX_ENVS flake8 mypy deadsymlinks)
|
|
endif()
|