mirror of
https://github.com/ceph/ceph
synced 2024-12-21 10:54:42 +00:00
c6779fdf13
IMO the amount of symlinks we have to manually maintain is tedious and error prone. Any ideas on improving thing? Signed-off-by: Sebastian Wagner <sewagner@redhat.com>
10 lines
231 B
CMake
10 lines
231 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 py3 flake8 mypy deadsymlinks)
|
|
endif()
|