disabled apt-based tests on OSX
This commit is contained in:
parent
349033d423
commit
afbd3142f8
|
@ -35,7 +35,12 @@ set(LIBRARY_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/lib)
|
|||
#target_link_libraries(example ${PROJECT_NAME})
|
||||
|
||||
rosbuild_add_pyunit(test/test_rosdep_core.py)
|
||||
rosbuild_add_pyunit(test/test_rosdep_source.py)
|
||||
rosbuild_add_pyunit(test/test_rosdep_commandline.py)
|
||||
rosbuild_add_pyunit(test/test_rosdep_yaml_cache.py)
|
||||
rosbuild_add_pyunit(test/test_rosdep_script.py)
|
||||
# These tests assume the presence of `apt`, which makes them fail on OSX.
|
||||
# They'll presumably also fail on other non-apt systems, but we'll start by
|
||||
# protecting against failures on OSX.
|
||||
if(NOT APPLE)
|
||||
rosbuild_add_pyunit(test/test_rosdep_source.py)
|
||||
rosbuild_add_pyunit(test/test_rosdep_commandline.py)
|
||||
endif()
|
||||
|
|
Loading…
Reference in New Issue