mirror of
https://github.com/ceph/ceph
synced 2024-12-09 13:08:28 +00:00
0127cd1e88
There were a couple of problems found by flake8 in the qa/ directory (most of them fixed now). Enabling flake8 during the usual check runs hopefully avoids adding new issues in the future. Signed-off-by: Thomas Bechtold <tbechtold@suse.com>
10 lines
200 B
CMake
10 lines
200 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 flake8)
|
|
endif()
|